Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-260.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ec1ed9edaa0a2f49f32e8a0ba7bf678f1df0b05 (plain)
1
2
3
4
5
6
class A<T> where T : class {}
class B<T> : A<T> where T : class {}
class Test {
	internal static A<Test> x = new B<Test> ();
	public static void Main () { }
}