Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / gtest-035.cs
blob73febabcdc80b17b2f712daee9fbdc3dc80e0a97
1 // May use a constructed type as constraint.
3 class Test<T>
4 { }
6 class Foo<T>
7 where T : Test<T>
8 { }
10 class X
12 public static void Main ()