[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0171-7.cs
blobab2c5dd1d983f694e9045ceb715cacef65cbf63b
1 // CS0171: Field `S1.s2' must be fully assigned before control leaves the constructor
2 // Line: 11
4 using System;
6 struct S1
8 S2 s2;
10 public S1 (int arg)
15 struct S2
17 int field;