Display error messages instead of stack traces.
[mcs.git] / errors / cs0136.cs
blob5ccbae33361e74ffde6ca813af1f48c26394897f
1 // cs0136.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 `parent' scope
2 // Line: 8
3 class X {
4 void b ()
6 int i;
8 string i;