cs0136.cs 192 B

12345678910111213
  1. // cs0136: A local variable named 'i' cannot be declared in this scope because it would give a different meaning to 'i'
  2. // Line: 8
  3. class X {
  4. void b ()
  5. {
  6. int i;
  7. {
  8. string i;
  9. }
  10. }
  11. }