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:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2001-11-08 16:30:53 +0300
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2001-11-08 16:30:53 +0300
commit3f8fe0f32b656855a59c46f57aacb8c34c9cb1e6 (patch)
tree4b2983c28b3cc68f1047333e203bba4ad234b5b0 /mcs/tests/test-40.cs
parenta9cb267ec3a214c43ba1ba8523140144fe856b4a (diff)
2001-11-08 Ravi Pratap <ravi@ximian.com>
* test-39.cs : Add * test-40.cs : Add * makefile : Modify to include the above as they pass all tests. svn path=/trunk/mcs/; revision=1292
Diffstat (limited to 'mcs/tests/test-40.cs')
-rw-r--r--mcs/tests/test-40.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-40.cs b/mcs/tests/test-40.cs
new file mode 100644
index 00000000000..9b72703437b
--- /dev/null
+++ b/mcs/tests/test-40.cs
@@ -0,0 +1,15 @@
+using System;
+
+public class Blah {
+
+ public enum MyEnum {
+ Foo = 1,
+ Bar
+ }
+
+ public static int Main ()
+ {
+ Console.WriteLine ("Enum emission test");
+ return 0;
+ }
+}