Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs0188-8.cs
blobd5e617998962a2bbbf811dfa36c03188fda5bc6e
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 int text;