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