* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0170-2.cs
1 // CS0170: Use of possibly unassigned field `c'
2 // Line: 11
3
4 struct A
5 {
6         private long b;
7         private float c;
8
9         public A (int foo)
10         {
11                 b = (long) c;
12                 c = 1;
13         }
14 }