Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-88.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9b3a480b153a135bb60db7dad1170aad2a42088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class X {

static void f (string s)
{
s. Split ('a');
}

	public static int Main ()
	{
		string s = "";
		
		s.Split ('a');
		s.Split ();
		s.Split ('a', 'b', 'c');
		return 0;
	}
}