**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0188.cs
blob09fe4259f5123b0e9b8657642d776035de2b72bb
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;