New test.
[mono.git] / mcs / errors / cs0573.cs
1 // cs0573.cs: `A.a': Structs cannot have instance field initializers
2 // Line: 5
3 struct A {
4         int a = 1;
5 }
6
7 class D {
8         static void Main ()
9         {
10                 A [] a = new A [10];
11
12         }
13 }