[w32file] Remove dead code
[mono.git] / mcs / errors / cs0165-13.cs
1 // CS0165: Use of unassigned local variable `foo'
2 // Line: 17
3
4 struct Rectangle
5 {
6         internal int x;
7         public int X {
8                 set { }
9         }
10 }
11
12 public class Foo
13 {
14         public static void Main ()
15         {
16                 Rectangle foo;
17                 foo.X = 5;
18         }
19 }