summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0171.cs
blob: 258161803f9441010e517e4ab9a904ffd7b0a5f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0171: Field `X.x' must be fully assigned before control leaves the constructor
// Line: 
struct X {
	public readonly int x;

	X (int a)
	{
	}

	static void Main () {}
}