Now rename it to be the proper error
[mono.git] / mcs / errors / bug14.cs
1 //
2 // fixed
3 //
4 using System;
5
6 class X {
7
8         static void Main ()
9         {
10                 string msg = String.Format ("{0} {1} {2} {3}", "one", 3, 3, "two");
11
12                 Console.WriteLine (msg);
13         }
14 }
15