2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0188-3.cs
blob214a43f2226d20e6cf6c5497ea14ed603b01f772
1 // CS0188: The `this' object cannot be used before all of its fields are assigned to
2 // Line: 16
4 struct Foo
6 int bar;
7 int baz;
9 public int Bar {
10 get { return bar; }
13 public Foo (int baz)
15 this.baz = baz;
16 bar = Bar - 1;