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-01-16 04:38:39 +0300
committerMiguel de Icaza <miguel@gnome.org>2002-01-16 04:38:39 +0300
commit9bc926dcd1586244560d8aa6ae449f5fd118ac24 (patch)
treee68a7f487316e58f51aaa3a41ab03b4e8e0777d7 /mcs/errors/cs1518.cs
parent20bce169fa09b4b8f7cea78bc7d0c3d0a733e45c (diff)
Add more errors that we handle now
svn path=/trunk/mcs/; revision=1997
Diffstat (limited to 'mcs/errors/cs1518.cs')
-rwxr-xr-xmcs/errors/cs1518.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/errors/cs1518.cs b/mcs/errors/cs1518.cs
new file mode 100755
index 00000000000..89036e1ee62
--- /dev/null
+++ b/mcs/errors/cs1518.cs
@@ -0,0 +1,6 @@
+//cs1518.cs: namespace can only contain class, interface, enum, struct or delegate
+// Line: 5
+namespace X {
+
+ sealed fe {}
+}