[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1525-20.cs
blob2aefb8701191383461042f00d45ccd0bb135ef67
1 // CS1525: Unexpected symbol `default:'
2 // Line: 12
4 class Program
6 static void Main ()
8 int x = 0;
9 switch (x) {
10 case 2:
11 int a = 1;
12 case default:
13 return;
14 case 1:
15 int b = 1;