[w32handle] Remove unused header includes
[mono-project.git] / mcs / tests / dtest-029.cs
blob3c2af4b0dfeb16ec6b168b9bbacf5a9efb5cd751
1 class C
3 static bool Test<T, U>(T t, U u)
5 dynamic d1 = 1;
6 dynamic d2 = "a";
7 return d1 == t && d2 == u;
10 static bool Test2(int i)
12 dynamic d1 = 1;
13 return d1 == i;
16 public static int Main ()
18 if (!Test (1, "a"))
19 return 1;
21 if (Test (2, "a"))
22 return 2;
24 if (Test (1, "----"))
25 return 3;
27 if (!Test2 (1))
28 return 4;
30 if (Test2 (2))
31 return 5;
33 return 0;