[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0188.cs
blob2a8c46966ac66ee2357284fedec5e9c28b8f7e91
1 // CS0188: The `this' object cannot be used before all of its fields are assigned to
2 // Line: 6
4 struct Sample {
5 public Sample(string text) {
6 Initialize();
7 this.text = text;
10 void Initialize() {
13 public string text;