// cs0103-3.cs: The name `y' does not exist in the context of `C' // Line: 8 public class C { public static void Main () { const int x = y; const int y = 1; } }