[mono/tests] Fix out of tree build.
[mono-project.git] / mcs / tests / gtest-260.cs
blob7ec1ed9edaa0a2f49f32e8a0ba7bf678f1df0b05
1 class A<T> where T : class {}
2 class B<T> : A<T> where T : class {}
3 class Test {
4 internal static A<Test> x = new B<Test> ();
5 public static void Main () { }