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

cs0171.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b2b2343b2a2db9854e9e3b7a3ac784cbbef4430 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0171.cs: field x must be initialized before constructor X ends.
// Line: 
struct X {
	public readonly int x;

	X (int a)
	{
	}

	static void Main () {}
}