2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-282.cs
blob36a0217cb37cf8c5300f0159eb9a5c574b3d873e
1 class Foo : C<Foo.Bar> {
2 public class Bar {}
4 class C<T> {}
6 class Test {
7 static Foo f = new Foo ();
8 static void Main () { System.Console.WriteLine (f.GetType ().BaseType); }