add ISafeSerializationData
[mcs.git] / tests / test-88.cs
bloba45aafe7e5b15884b11a307584ff278f31adfd26
1 class X {
3 static void f (string s)
5 s. Split ('a');
8 static int Main ()
10 string s = "";
12 s.Split ('a');
13 s.Split ();
14 s.Split ('a', 'b', 'c');
15 return 0;