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