New test.
authorMarek Safar <marek.safar@gmail.com>
Tue, 11 May 2010 21:25:06 +0000 (21:25 -0000)
committerMarek Safar <marek.safar@gmail.com>
Tue, 11 May 2010 21:25:06 +0000 (21:25 -0000)
svn path=/trunk/mcs/; revision=157171

mcs/tests/test-762.cs [new file with mode: 0644]

diff --git a/mcs/tests/test-762.cs b/mcs/tests/test-762.cs
new file mode 100644 (file)
index 0000000..eca64b8
--- /dev/null
@@ -0,0 +1,19 @@
+using System;
+using N1;
+using N2;
+
+namespace N1.Derived {
+       class Dummy {}
+}
+
+namespace N2.Derived {
+       class Dummy {}
+}
+
+public class DerivedAttribute : Attribute {
+}
+
+[Derived ()]
+class T {
+       static void Main () {}
+}