2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / 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;