Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-519.cs
1 class G<T>
2 {
3 }
4
5 interface I
6 {
7         void Foo<T> () where T : G<T>;
8 }
9
10 class A : I
11 {
12         public void Foo<U> () where U : G<U>
13         {
14         }
15
16         public static void Main ()
17         {
18         }
19 }