Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0573.cs
blobdeec3ea655380f63a471f83036722ae35d2eaee1
1 // CS0573: `A.a': Structs cannot have instance field initializers
2 // Line: 5
3 struct A {
4 int a = 1;
7 class D {
8 static void Main ()
10 A [] a = new A [10];