[w32file] Remove dead code
[mono.git] / mcs / errors / cs1060.cs
1 // CS1060: Use of possibly unassigned field `c'
2 // Line: 19
3 // Compiler options: -warnaserror
4
5 public class C
6 {
7         public int v;
8 }
9
10 public struct S
11 {
12         public C c;
13 }
14
15 public class Test
16 {
17         static void Main ()
18         {
19                 S s;
20                 s.c.v = 5;
21         }
22 }