[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0188-8.cs
blob57dd731ebca3e34379a6940aeb59c456dc9c8c1f
1 // CS0188: The `this' object cannot be used before all of its fields are assigned to
2 // Line: 8
4 struct Sample
6 public Sample (int arg)
8 text = this.Prop;
11 int Prop { get { return 1; } }
13 public int text;