Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / gtest-158.cs
1 public class Moo<C>
2         where C : Moo<C>.Foo
3 {
4         public class Foo
5         { }
6 }
7
8 public class Test : Moo<Test>.Foo
9 {
10 }
11
12 class X
13 {
14         public static void Main ()
15         {
16                 Moo<Test> moo = new Moo<Test> ();
17         }
18 }