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>2003-04-21 02:36:57 +0400
committerMiguel de Icaza <miguel@gnome.org>2003-04-21 02:36:57 +0400
commita1b6fa9f75efd3f567546df62fc66591a0f5b75f (patch)
tree4edf5755aba5a931944653a87098fce0b3260b79 /mcs/errors/cs0519.cs
parent6b4897725b383fb682494df7b786e1bc08d27e8a (diff)
Add new error: namespace clashes
svn path=/trunk/mcs/; revision=13833
Diffstat (limited to 'mcs/errors/cs0519.cs')
-rw-r--r--mcs/errors/cs0519.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs0519.cs b/mcs/errors/cs0519.cs
new file mode 100644
index 00000000000..4f0fa75400a
--- /dev/null
+++ b/mcs/errors/cs0519.cs
@@ -0,0 +1,10 @@
+//using System;
+
+enum System { A }
+
+class X {
+ static void Main ()
+ {
+ System s = new System ();
+ }
+}