dlr bug
[mcs.git] / tests / gtest-158.cs
blob5f547f9df716f516ef98a430329003be4f983a17
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 static void Main ()
16 Moo<Test> moo = new Moo<Test> ();