[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0171.cs
1 // CS0171: Field `X.x' must be fully assigned before control leaves the constructor
2 // Line: 
3 struct X {
4         public readonly int x;
5
6         X (int a)
7         {
8         }
9
10         static void Main () {}
11 }