[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0136.cs
1 // CS0136: A local variable named `i' cannot be declared in this scope because it would give a different meaning to `i', which is already used in a `parent or current' scope to denote something else
2 // Line: 9
3
4 class X {
5         void b ()
6         {
7                 int i;
8                 {
9                         string i;
10                 }
11         }
12 }
13
14