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:
authorMarek Safar <marek.safar@gmail.com>2011-03-31 17:58:16 +0400
committerMarek Safar <marek.safar@gmail.com>2011-03-31 17:58:54 +0400
commitf53dd8b2649dd2b1c1ee6297d6c48a307b84b16e (patch)
treedd9723be77630975a7c64bca7be21e2ed1d316b0 /mcs/tests/test-818.cs
parent16a5e1103766acb2adf91c1a0181edf0aef9b70e (diff)
Fix few excessive error reports
Diffstat (limited to 'mcs/tests/test-818.cs')
-rw-r--r--mcs/tests/test-818.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcs/tests/test-818.cs b/mcs/tests/test-818.cs
new file mode 100644
index 00000000000..4aca10c9dab
--- /dev/null
+++ b/mcs/tests/test-818.cs
@@ -0,0 +1,20 @@
+using System;
+
+namespace A { class CAttribute : Attribute { } }
+namespace B { class CAttribute : Attribute { } }
+
+namespace Foo
+{
+ using A;
+ using B;
+
+ using C = A.CAttribute;
+
+ [C]
+ class Foo
+ {
+ static void Main ()
+ {
+ }
+ }
+}