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

test-545.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48ad7e3a139e8646e746754eaec4bfc1900948ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// It is legal to call the this() constructor
// on structures.
//

struct Dingus {
	public Dingus (int a) : this ()
		{
		}
	
}

class X {
	static void Main () {}
}