[bcl] Update BCL Linked Size
[mono-project.git] / mcs / tests / test-805.cs
blobdc4d6de67b4646cd8abdeec07b2354c1eeb6f793
1 // Compiler options: -r:test-805-lib.dll
3 public class TestClass
5 public static int Main ()
7 var a = new A ();
8 var b = a.Test ();
9 if (b.ReturnValue () != 5)
10 return 1;
12 a.Test2 (null);
13 return 0;
17 public class B
19 internal int ReturnValue ()
21 return 5;
25 public class C
29 public class G<T>