2006-03-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / errors / cs0103-2.cs
1 // cs0103.cs: The name `y' does not exist in the context of `C'
2 // Line: 8
3
4 public class C
5 {
6         public static void Main ()
7         {
8             int x = y;
9             int y = 1;
10         }
11 }