2006-08-16 Aaron Bockover <abockover@novell.com>
[mono.git] / mcs / errors / cs0136-5.cs
1 // cs0136-5.cs: 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 `child' scope
2 // Line: 9
3 class X {
4         void b ()
5         {
6                 {
7                         string i;
8                 }
9                 int i;
10         }
11 }
12
13