Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs0171-7.cs
1 // CS0171: Field `S1.s2' must be fully assigned before control leaves the constructor
2 // Line: 11
3
4 using System;
5
6 struct S1
7 {
8         S2 s2;
9
10         public S1 (int arg)
11         {
12         }
13 }
14
15 struct S2
16 {
17         int field;
18 }