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 () {} }