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>2002-05-06 19:12:43 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-05-06 19:12:43 +0400
commitc6ae70e97dca22c03102a8240579baffe1d6b202 (patch)
tree4be123d61095a493cb696b47ed2b0159df93e542 /mcs/tests/test-116.cs
parent64e6e41d740c2aaf12cc1d805ac78f53217ab51b (diff)
Add more tests
svn path=/trunk/mcs/; revision=4339
Diffstat (limited to 'mcs/tests/test-116.cs')
-rwxr-xr-xmcs/tests/test-116.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/tests/test-116.cs b/mcs/tests/test-116.cs
new file mode 100755
index 00000000000..c5690ba62f1
--- /dev/null
+++ b/mcs/tests/test-116.cs
@@ -0,0 +1,12 @@
+//
+// Parsing tests
+//
+
+class X {
+ static int Main ()
+ {
+ double d = 1.4e-4;
+ // add more ;-)
+ return 0;
+ }
+}