Fix warnings.
[mono.git] / mcs / errors / cs0188.cs
1 // cs0188.cs: The this object cannot be used before all of its fields are assigned to\r
2 // Line: 6\r
3 \r
4 struct Sample {\r
5         public Sample(string text) {\r
6             Initialize();\r
7             this.text = text;\r
8         }\r
9 \r
10         void Initialize() {\r
11         }\r
12         \r
13         string text;\r
14 }