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-09-20 02:08:21 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-09-20 02:08:21 +0400
commit045eaf1f7788d6629ffb78640f12b46ab525a128 (patch)
tree51d7ba7ddcdd47f6f4ba05f4e432b04b8e5b0a8c /mcs/errors/cs0104.cs
parent14d6027ca5ba7c5cabadecd8dfed3d28353d5b81 (diff)
Add new test
svn path=/trunk/mcs/; revision=7629
Diffstat (limited to 'mcs/errors/cs0104.cs')
-rwxr-xr-xmcs/errors/cs0104.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcs/errors/cs0104.cs b/mcs/errors/cs0104.cs
new file mode 100755
index 00000000000..7192c8ab9cf
--- /dev/null
+++ b/mcs/errors/cs0104.cs
@@ -0,0 +1,20 @@
+// cs0104.cs: Ambiguous type reference
+// Line: 16
+namespace A {
+ class X {
+ }
+}
+
+namespace B {
+ class X {
+ }
+}
+
+namespace C {
+ using A;
+ using B;
+ class D : X {
+
+ static void Main () {}
+ }
+}