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

gtest-174.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24d9fd575226bf23f93e658c7338b9fff3975222 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Compiler options: /r:gtest-174-lib.dll
public class B<T> {
	public static B<T> _N_constant_object = new B<T> ();
}

class M {
	public static void Main () {
		A<int> x = A<int>._N_constant_object;
		B<int> y = B<int>._N_constant_object;
	}
}