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:
Diffstat (limited to 'mcs/errors/cs3016-4.cs')
-rw-r--r--mcs/errors/cs3016-4.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/mcs/errors/cs3016-4.cs b/mcs/errors/cs3016-4.cs
deleted file mode 100644
index 3b98475d9ae..00000000000
--- a/mcs/errors/cs3016-4.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-// cs3016.cs: Arrays as attribute arguments are not CLS-compliant
-// Line: 7
-
-using System;
-[assembly: System.CLSCompliant (true)]
-
-[CLSAttribute (new bool [] {true, false})]
-public enum E {
-}
-
-public partial class CLSAttribute: System.Attribute {
- public CLSAttribute () {
- }
-
- public CLSAttribute(bool[] array) {
- }
-} \ No newline at end of file