[xbuild] Add new reserved properties $(MSBuildThisFile*).
[mono.git] / mcs / errors / cs0573-2.cs
1 // cs0573.cs: `A.a': Structs cannot have instance field initializers
2 // Line: 5
3
4 partial struct A {
5         int a = 1;
6 }