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>2004-09-02 20:52:42 +0400
committerMarek Safar <marek.safar@gmail.com>2004-09-02 20:52:42 +0400
commitbdddb4116dfc9c95ce54e0fd2a2cfcfbe08696c7 (patch)
tree362a12af3d15abece894bbfc0950590511c315ba /mcs/tests/test-205.cs
parent46f85c3d0ad9f33a298b9052e9d12c115794b4d9 (diff)
2004-09-02 Marek Safar <marek.safar@seznam.cz>
* test-205.cs: New test for #65170. svn path=/trunk/mcs/; revision=33233
Diffstat (limited to 'mcs/tests/test-205.cs')
-rw-r--r--mcs/tests/test-205.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/tests/test-205.cs b/mcs/tests/test-205.cs
new file mode 100644
index 00000000000..bab2222b9c4
--- /dev/null
+++ b/mcs/tests/test-205.cs
@@ -0,0 +1,14 @@
+using System;
+
+[AttributeUsage (AttributeTargets.All)]
+public class A: Attribute {
+
+ public A (object o) {
+ }
+}
+
+[A ((object)AttributeTargets.All)]
+public class Test {
+ static public void Main() {
+ }
+}