2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0171.cs
blobfe65ebc1f713e66e8cbe40e07e43991674418975
1 // cs0171.cs: 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 () {}