**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0136.cs
blob3927a72616b95adc48190b289c82858d00b8149b
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 ()
6 int i;
8 string i;