2007-04-19 Chris Toshok <toshok@ximian.com>
[mcs.git] / errors / cs0103-2.cs
blob27310cfe8d9eb5cc2cb39f30459711dbc716546e
1 // cs0103.cs: The name `y' does not exist in the context of `C'
2 // Line: 8
4 public class C
6 public static void Main ()
8 int x = y;
9 int y = 1;