Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-552-lib.cs
1 // Compiler options: -t:library
2
3 public class G<T> where T : G<T>.GPD
4 {
5         public interface IGD
6         {
7         }
8
9         public class GPD : IGD
10         {
11                 public T GT;
12                 
13                 public void Foo ()
14                 {
15                 }
16         }
17 }
18
19 public class H<T>
20 {
21         public class N<U, V> where U : H<T> where V : H<T>.M<V>
22         {
23         }
24         
25         public class M<X>
26         {
27         }
28 }