Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / dtest-060.cs
1 namespace Test
2 {
3         public class Program
4         {
5                 public static int Main ()
6                 {
7                         dynamic d = 0L;
8                         return C.M<Program> (d);
9                 }
10         }
11
12         public class C
13         {
14                 public static int M<T> (int i) where T : C
15                 {
16                         return 1;
17                 }
18
19                 public static int M<T> (long l)
20                 {
21                         return 0;
22                 }
23         }
24 }