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>2006-02-12 01:06:42 +0300
committerMarek Safar <marek.safar@gmail.com>2006-02-12 01:06:42 +0300
commit22608a5c7b2ec224cebae257e09dab301ccbc80f (patch)
tree9925ca221bc6026a0fef250fc8a2808f2e6844d3 /mcs/tests/test-491.cs
parentc9b8c1df8c183b04b23e62e1611cc67d9da2fe0e (diff)
2006-02-11 Marek Safar <marek.safar@seznam.cz>
* test-491.cs: Test for bug #77485. svn path=/trunk/mcs/; revision=56811
Diffstat (limited to 'mcs/tests/test-491.cs')
-rw-r--r--mcs/tests/test-491.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/tests/test-491.cs b/mcs/tests/test-491.cs
new file mode 100644
index 00000000000..f64e6264509
--- /dev/null
+++ b/mcs/tests/test-491.cs
@@ -0,0 +1,12 @@
+
+[AttrB]
+public class M {
+ public static void Main()
+ {
+ }
+}
+
+[AttrB]
+public class AttrA : System.Attribute {}
+
+public class AttrB : AttrA {}