Update pipeline-netcore-runtime.yml
[mono-project.git] / mcs / tests / gtest-519.cs
bloba571012119fce0cefc5ac9a10d3586b60b2b43ee
1 class G<T>
5 interface I
7 void Foo<T> () where T : G<T>;
10 class A : I
12 public void Foo<U> () where U : G<U>
16 public static void Main ()