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-04-04 00:58:19 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-04-04 00:58:19 +0400
commit0a638094004310b0f1e98c2f8cbb0e2ceffd813f (patch)
treeeeead1069d194c7d99d77d307ad745c4f03c9552 /mcs/tests/test-97.cs
parentc996d9399950a5f09ef2fec12db4f739aac68cd9 (diff)
Add new tests
svn path=/trunk/mcs/; revision=3594
Diffstat (limited to 'mcs/tests/test-97.cs')
-rwxr-xr-xmcs/tests/test-97.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/test-97.cs b/mcs/tests/test-97.cs
new file mode 100755
index 00000000000..612185cf1aa
--- /dev/null
+++ b/mcs/tests/test-97.cs
@@ -0,0 +1,18 @@
+//
+// This test excercises the simple name lookups on
+// unfinished enumerations.
+//
+
+public enum FL {
+ EMPTY = 0,
+ USHIFT = 11,
+ USER0 = (1<<(USHIFT+0)),
+}
+
+class X {
+
+ static int Main ()
+ {
+ return 0;
+ }
+}