[mono/tests] Fix out of tree build.
[mono-project.git] / mcs / tests / gtest-158.cs
blob098848936f3cc651ae1ba1055b8b9b0878cf5022
1 public class Moo<C>
2 where C : Moo<C>.Foo
4 public class Foo
5 { }
8 public class Test : Moo<Test>.Foo
12 class X
14 public static void Main ()
16 Moo<Test> moo = new Moo<Test> ();