[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0171.cs
blob258161803f9441010e517e4ab9a904ffd7b0a5f3
1 // CS0171: Field `X.x' must be fully assigned before control leaves the constructor
2 // Line:
3 struct X {
4 public readonly int x;
6 X (int a)
10 static void Main () {}