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: a9c54ff07027069f408ad5c7e40eafcf2b860baf (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 {
	public static void Main () {}
}