summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-560.cs
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 ()
	{
	}
}