[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-88.cs
blobc9b3a480b153a135bb60db7dad1170aad2a42088
1 class X {
3 static void f (string s)
5 s. Split ('a');
8 public static int Main ()
10 string s = "";
12 s.Split ('a');
13 s.Split ();
14 s.Split ('a', 'b', 'c');
15 return 0;