Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0573.cs
1 // CS0573: 'S': Structs cannot have instance property or field initializers
2 // Line: 6
3
4 struct S
5 {
6         int v = 0;
7 }