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-20 20:41:15 +0400
committerMarek Safar <marek.safar@gmail.com>2004-05-20 20:41:15 +0400
commitbb56009ae62fa0c52db952db6702a005db261d55 (patch)
tree48f19860dac76372b66e51a10fda5836c726e5d3 /mcs/errors/cs0579-7.cs
parent12549f8418b5837ef2597faadc1304378d445a65 (diff)
New test
svn path=/trunk/mcs/; revision=27761
Diffstat (limited to 'mcs/errors/cs0579-7.cs')
-rw-r--r--mcs/errors/cs0579-7.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs0579-7.cs b/mcs/errors/cs0579-7.cs
new file mode 100644
index 00000000000..300d77fa0d3
--- /dev/null
+++ b/mcs/errors/cs0579-7.cs
@@ -0,0 +1,12 @@
+// cs0579.cs : Duplicate 'CLSCompliant' attribute
+// Line : 10
+
+using System;
+
+[assembly:CLSCompliant(true)]
+
+namespace DuplicateAttributes {
+ [CLSCompliant(true)]
+ [type:CLSCompliant(true)]
+ public class ClassA {}
+}