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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2001-12-27 07:21:49 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-12-27 07:21:49 +0300
commite2ca9686dd7b8e028e6dc7afa4eda668de8a4200 (patch)
tree5bf701146338085dad691044139ed2c4696d17a7 /mcs/errors/bug14.cs
parentffe4df2dfaeb0a14978ed0141a88b0ee0bfd5bd0 (diff)
Add new bug
svn path=/trunk/mcs/; revision=1721
Diffstat (limited to 'mcs/errors/bug14.cs')
-rwxr-xr-xmcs/errors/bug14.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/bug14.cs b/mcs/errors/bug14.cs
new file mode 100755
index 00000000000..b636c365fb5
--- /dev/null
+++ b/mcs/errors/bug14.cs
@@ -0,0 +1,10 @@
+using System;
+
+class X {
+
+ static void Main ()
+ {
+ string msg = String.Format ("{0} {1} {2} {3}", "one", 3, 3, "two");
+ }
+}
+