[xbuild] Add property $(SkipCopyUnchangedFiles)
[mono.git] / mcs / errors / cs0165-13.cs
1 // CS0165: Use of unassigned local variable `foo'
2 // Line: 9
3
4 struct Rectangle { int x; public int X { set { } } }
5 public class Foo {
6   public static void Main (string[] args)
7   {
8     Rectangle foo;
9     foo.X = 5;
10   }
11 }