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-05-19 18:38:20 +0400
committerMarek Safar <marek.safar@gmail.com>2004-05-19 18:38:20 +0400
commit0b29f2df3b6c4c8253fb1440e4acaea3e529f785 (patch)
tree2fd1928dffdc4fa0adf938bb85fc88370c98124a /mcs/errors/cs0579-6.cs
parent6388883b6271fd9758db0a7e1d5e3c9e231f829a (diff)
2004-05-19 Marek Safar <marek.safar@seznam.cz>
* cs0579-6.cs: New test for bug #58688. svn path=/trunk/mcs/; revision=27677
Diffstat (limited to 'mcs/errors/cs0579-6.cs')
-rw-r--r--mcs/errors/cs0579-6.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs0579-6.cs b/mcs/errors/cs0579-6.cs
new file mode 100644
index 00000000000..ca2dbcc9842
--- /dev/null
+++ b/mcs/errors/cs0579-6.cs
@@ -0,0 +1,12 @@
+// cs0579.cs : Duplicate 'CLSCompliant' attribute
+// Line : 10
+
+using System;
+
+[assembly:CLSCompliant(true)]
+
+namespace DuplicateAttributes {
+ [CLSCompliant(true)]
+ [CLSCompliant(true)]
+ public class ClassA {}
+}