Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0188-5.cs
1 // CS0188: The `this' object cannot be used before all of its fields are assigned to
2 // Line: 8
3
4 struct Sample
5 {
6         public Sample (int arg)
7         {
8                 text = base.ToString ();
9         }
10
11         internal string text;
12 }