New test.
[mono.git] / mcs / errors / cs3015-2.cs
1 // cs3015-2.cs: `CLSAttribute' has no accessible constructors which use only CLS-compliant types
2 // Line: 7
3
4 using System;
5 [assembly:CLSCompliant (true)]
6
7 public class CLSAttribute: Attribute {
8     [CLSCompliant (false)]
9     public CLSAttribute(string array) {
10     }
11 }