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-07 13:24:40 +0400
committerMarek Safar <marek.safar@gmail.com>2004-05-07 13:24:40 +0400
commit13c581d5cf00c17352eb9dd575d8826ae05303ea (patch)
treeb67579475c812bdba5e80a28d12051aa7997d69a /mcs/errors/cs3015-2.cs
parent1fab1be621786ada49b2e104933dfa6183be681e (diff)
2004-05-07 Marek Safar <marek.safar@seznam.cz>
* cs0579-4.cs, CS0579-4-1.cs, * cs0579-5.cs, * cs0657.cs, * cs3015-2.cs, * cs3019.cs, * cs3019-2.cs: 6 new error tests. svn path=/trunk/mcs/; revision=26890
Diffstat (limited to 'mcs/errors/cs3015-2.cs')
-rw-r--r--mcs/errors/cs3015-2.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/cs3015-2.cs b/mcs/errors/cs3015-2.cs
new file mode 100644
index 00000000000..b8423681f96
--- /dev/null
+++ b/mcs/errors/cs3015-2.cs
@@ -0,0 +1,11 @@
+// cs3015.cs: 'CLSAttribute' has no accessible constructors which use only CLS compliant types
+// Line: 7
+
+using System;
+[assembly:CLSCompliant (true)]
+
+public class CLSAttribute: Attribute {
+ [CLSCompliant (false)]
+ public CLSAttribute(string array) {
+ }
+}