[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0573-2.cs
blob443bed391232f24291b027077b8e03ba4730bd3f
1 // CS0573: 'S': Structs cannot have instance property or field initializers
2 // Line: 6
4 struct S
6 public int Prop { get; set; } = 3;