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:
authorMarek Safar <marek.safar@gmail.com>2008-08-05 13:20:33 +0400
committerMarek Safar <marek.safar@gmail.com>2008-08-05 13:20:33 +0400
commit34726ccf927c6d7fac631856c368be0d93fb4a35 (patch)
treee4860131f3fe1fbef8e4a331cf9654fbea268a65 /mcs/tests/test-669.cs
parentaf376c9a18c15d17197d016dc70c76d05ff5c633 (diff)
New test.
svn path=/trunk/mcs/; revision=109647
Diffstat (limited to 'mcs/tests/test-669.cs')
-rwxr-xr-xmcs/tests/test-669.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/tests/test-669.cs b/mcs/tests/test-669.cs
new file mode 100755
index 00000000000..5551d00e8ab
--- /dev/null
+++ b/mcs/tests/test-669.cs
@@ -0,0 +1,12 @@
+enum E
+{
+ X = 0
+}
+
+class Test
+{
+ static void Main ()
+ {
+ E e = 1 - 2 + 1;
+ }
+}