cleol
[mcs.git] / errors / cs3016.cs
blobf5dd84c5f43df4859391639786102635b5b13b64
1 // CS3016: Arrays as attribute arguments are not CLS-compliant
2 // Line: 8
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly:CLSCompliant (true)]
8 [CLSAttribute (new bool [] {true, false})]
9 public class CLSAttribute: Attribute {
10 public CLSAttribute () {
13 public CLSAttribute(bool[] array) {