[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0170-2.cs
blobb60f3d97ac9d56b25d36e19c0bfc7ee8fce191ed
1 // CS0170: Use of possibly unassigned field `c'
2 // Line: 11
4 struct A
6 public long b;
7 public float c;
9 public A (int foo)
11 b = (long) c;
12 c = 1;