[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs0573-2.cs
1 // CS0573: 'S': Structs cannot have instance property or field initializers
2 // Line: 6
3
4 struct S
5 {
6         public int Prop { get; set; } = 3;
7 }