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

test-702.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac3422978d9e865b5620b0603dac96faa84b1f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
struct S
{
	int a;
	int b;
	
	public S (int i)
	{
		this = new S ();
	}
	
	public S (string s, int a)
	{
		this.a = a;
		this.b = 2;
	}
	
	public static void Main ()
	{
		S s = new S (1);
	}
}