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:
authorDuncan Mak <duncan@mono-cvs.ximian.com>2004-12-30 20:28:22 +0300
committerDuncan Mak <duncan@mono-cvs.ximian.com>2004-12-30 20:28:22 +0300
commit738d41e1dc6b91151346be572eab7909551ba911 (patch)
tree6042638dd13fd5997331bbb6bae359e80e7836c7 /mcs/tests/test-330.cs
parent1aa6df53e8607b9e21cefffa4fd25874d7454ee9 (diff)
2004-12-30 Duncan Mak <duncan@ximian.com>
* test-330.cs: New test for #70468. * Makefile (TEST_SOURCES_common): Added test-330.cs svn path=/trunk/mcs/; revision=38191
Diffstat (limited to 'mcs/tests/test-330.cs')
-rw-r--r--mcs/tests/test-330.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/tests/test-330.cs b/mcs/tests/test-330.cs
new file mode 100644
index 00000000000..15c1698560f
--- /dev/null
+++ b/mcs/tests/test-330.cs
@@ -0,0 +1,6 @@
+class X {
+ static void Main ()
+ {
+ System.IFormattable foo = -1;
+ }
+}