[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-238.cs
blob177c8d1641d91d71dfb4de5bb943296769ce7e5f
1 // Compiler options: /r:gtest-238-lib.dll
2 // Dependencies: gtest-238-lib.cs
3 class X
5 public static int Main ()
7 Foo<long> foo = new Foo<long> ();
8 if (foo.Test (3) != 1)
9 return 1;
10 if (foo.Test (5L) != 2)
11 return 2;
12 return 0;