* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs3016-1.cs
1 // cs3016.cs: Arrays as attribute arguments are not CLS-compliant
2 // Line: 7
3
4 using System;
5 [assembly: System.CLSCompliant (true)]
6
7 [CLSAttribute (new bool [] {true, false})]
8 public enum E {
9 }
10
11 public class CLSAttribute: System.Attribute {
12         public CLSAttribute () {
13         }
14         
15         public CLSAttribute(bool[] array) {
16         }
17 }