[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-268.cs
1 public class Test
2 {
3         void Bar ()
4         {
5                 G<int> g = G<int>.Instance;
6         }
7
8         // When it goes outside, there is no error.
9         public class G<T>
10         {
11                 public static G<T> Instance;
12         }
13
14         public static void Main ()
15         { }
16 }