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

bug14.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9167d9afbbf9a8c363a2741d87ff2673cf953d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// fixed
//
using System;

class X {

	static void Main ()
	{
		string msg = String.Format ("{0} {1} {2} {3}", "one", 3, 3, "two");

		Console.WriteLine (msg);
	}
}