[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-914.cs
blob8366f7081edfb3899baec37dda08800c6d21419c
1 // CS0135: `test' conflicts with a declaration in a child block
2 // Line: 11
4 class ClassMain {
5 static bool test = true;
7 public static void Main() {
8 if (true) {
9 bool test = false;
11 test = false;