blob: d39ae91d46b6c1b6dec1ac6e6eb0f972b0415923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0188: The `this' object cannot be used before all of its fields are assigned to
// Line: 8
struct Sample
{
public Sample (int arg)
{
text = base.ToString ();
}
internal string text;
}
|