2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3016-1.cs
blob334edad3dff54ab51f3438027f98a987effde8d3
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 class CLSAttribute: System.Attribute {
13 public CLSAttribute () {
16 public CLSAttribute(bool[] array) {