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-03 20:22:19 +0400
committerMarek Safar <marek.safar@gmail.com>2004-09-03 20:22:19 +0400
commitf11772adb6596f40438d4deec8494edcb17a4cc0 (patch)
tree0b70eb7460b747538b972224920cac5b9863bd63 /mcs/errors/cs3014-8.cs
parent2ccb3ff17823569f4cd1e009adfd5ca4647c7548 (diff)
2004-09-03 Marek Safar <marek.safar@seznam.cz>
* 8 new error tests. svn path=/trunk/mcs/; revision=33290
Diffstat (limited to 'mcs/errors/cs3014-8.cs')
-rw-r--r--mcs/errors/cs3014-8.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/errors/cs3014-8.cs b/mcs/errors/cs3014-8.cs
new file mode 100644
index 00000000000..32e4a2b8f49
--- /dev/null
+++ b/mcs/errors/cs3014-8.cs
@@ -0,0 +1,9 @@
+// cs3014-8.cs: 'E2.Foo' cannot be marked as CLS compliant because the assembly is not marked as compliant
+// Line: 7
+
+using System;
+
+public enum E2 {
+ [CLSCompliant (true)]
+ Foo
+}