[bcl] Update BCL Linked Size
[mono-project.git] / mcs / tests / gtest-522.cs
blob59510d13b0149fccfdc1c7448ba241a957c1f09a
1 using System;
3 class C<T>
5 public static int Foo;
8 class X
10 public static void Main ()
14 void Test<T> (T A)
16 A<T> ();
18 object C;
19 var c = C<int>.Foo;
22 static void A<U> ()