2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3016-4.cs
blobacf8f0d73c45672456de591653463590e58cc21a
1 // CS3016: Arrays as attribute arguments are not CLS-compliant
2 // Line: 8
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly: System.CLSCompliant (true)]
8 [CLSAttribute (new bool [] {true, false})]
9 public enum E {
12 public partial class CLSAttribute: System.Attribute {
13 public CLSAttribute () {
16 public CLSAttribute(bool[] array) {