de59e4d8c90ca878f272986fe9fdfda3ad50be80
[mono.git] / mcs / errors / cs0103-2.cs
1 // cs0103cs: The name 'y' does not exist in the current context
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 }