Merge pull request #4327 from vkargov/vk-abcremedy
[mono.git] / mcs / tests / gtest-522.cs
1 using System;
2
3 class C<T>
4 {
5         public static int Foo;
6 }
7
8 class X
9 {
10         public static void Main ()
11         {
12         }
13         
14         void Test<T> (T A)
15         {
16                 A<T> ();
17                 
18                 object C;
19                 var c = C<int>.Foo;
20         }
21         
22         static void A<U> ()
23         {
24         }
25 }