cleol
[mcs.git] / errors / cs0188.cs
blob00d508ee340af4e326b6c303f010d9f34302112c
1 // cs0188.cs: 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 string text;