2009-07-20 Geoff Norton <gnorton@novell.com>
[mono-project.git] / mcs / errors / cs0170-2.cs
blob911ebee02167770500290c50d38f25da55e6841e
1 // CS0170: Use of possibly unassigned field `c'
2 // Line: 11
4 struct A
6 private long b;
7 private float c;
9 public A (int foo)
11 b = (long) c;
12 c = 1;