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>2005-01-14 03:55:59 +0300
committerMiguel de Icaza <miguel@gnome.org>2005-01-14 03:55:59 +0300
commitbdfcc4d8e2ade95c67aa454925d39199554c77b0 (patch)
tree9446431bf31ae5a8d2ad53b912ce0f312d3989fc /mcs/errors/cs0118-2.cs
parentc636186839d6396c9f4c74aad58e4ae9e6855b74 (diff)
Remove invalid error
svn path=/trunk/mcs/; revision=38912
Diffstat (limited to 'mcs/errors/cs0118-2.cs')
-rw-r--r--mcs/errors/cs0118-2.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/mcs/errors/cs0118-2.cs b/mcs/errors/cs0118-2.cs
deleted file mode 100644
index 13582a7c855..00000000000
--- a/mcs/errors/cs0118-2.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-// error CS0118: 'A.B' denotes a 'namespace', where a type was expected
-// Line: 9
-// Compiler options: -r:CS0118-2-lib.dll
-
-using A.B.C;
-
-namespace A.D {
- class Test {
- static public void Main ()
- {
- B c = new B ();
- }
- }
-}