Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-96.cs
1 //
2 // Compilation test
3 //
4 // This used to be a bug in the name lookups in delegate declarations
5 //
6 namespace N1
7 {       
8         public class A
9         {               
10                 public static int Main  ()
11                 {
12                         return 0;
13                 }
14         }
15
16         //
17         // A used to not be resolved
18         //
19         public delegate void C(object sender, A a);
20 }