cs0128.cs 159 B

123456789101112
  1. // cs0128: a local variable named `x' is already defined in this scope
  2. // Line:
  3. class x {
  4. static int y ()
  5. {
  6. int x = 1;
  7. int x = 2;
  8. return x + x;
  9. }
  10. }