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

gtest-560.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5532a1749c1504e306d0264c323895b7317d7714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
struct G<T>
{
	public static G<T> s;

	private G (int i)
	{
	}
}

struct S
{
	private G<string> value;

	public static void Main ()
	{
	}
}