Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0170-2.cs
1 // CS0170: Use of possibly unassigned field `c'
2 // Line: 11
3
4 struct A
5 {
6         public long b;
7         public float c;
8
9         public A (int foo)
10         {
11                 b = (long) c;
12                 c = 1;
13         }
14 }