d32896c91f61839e233127318133392fec8dce0b
[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         }
11
12         //
13         // A used to not be resolved
14         //
15         public delegate void C(object sender, A a);
16
17         static int Main  ()
18         {
19                 return 0;
20         }
21 }