2005-12-27 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / cs0103-3.cs
1 // cs0103-3.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             const int x = y;
9             const int y = 1;
10         }
11 }