Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git] / mcs / errors / cs0165-13.cs
blobfa3d6b5e92ba8ddc1539d02a37330b0c108434ab
1 // CS0165: Use of unassigned local variable `foo'
2 // Line: 17
4 struct Rectangle
6 internal int x;
7 public int X {
8 set { }
12 public class Foo
14 public static void Main ()
16 Rectangle foo;
17 foo.X = 5;