2005-06-24 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs3015.cs
1 // cs3015.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    public CLSAttribute(string[] array) {
9    }
10 }