[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0136.cs
blobea82bdc81414a54bfb160e9840e99a8f5405b6f0
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
4 class X {
5 void b ()
7 int i;
9 string i;