1 2 3 4 5 6 7 8 9 10 11
// CS0841: A local variable `y' cannot be used before it is declared // Line: 8 public class C { public static void Main () { int x = y; int y = 1; } }