[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-debug-05.cs
blob836fb4824e590eb4694a95b4f0e08b648a0f1825
1 class C
3 public static void Main ()
5 int a = 2;
6 #line 100 "mising-file"
7 int b = 2;
8 #line default
11 void Hidden ()
13 #line hidden
14 int x = 9;
15 #line default // comment testing
16 const int o = 2;
18 #line hidden
19 x = 9;
20 #line hidden
21 int x2 = 3;
22 #line 55
23 int h = 7;
26 void HiddenRecurse ()
28 string s1 = "a";
29 #line hidden
30 string s2 = "bb";
31 #line 29
32 return;