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

gtest-463.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ad02ea6c967dcf1b255c62762fed452c6c21998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public partial struct STuple<Ta> { }
public partial struct STuple<Ta>
{
	private readonly Ta a;
	public STuple (Ta a) { this.a = a; }
}

class C
{
	public static int Main ()
	{
		new STuple<int> ();
		return 0;
	}
}