Applied Patch from Marek Safar
[mono.git] / mcs / errors / cs3016-3.cs
1 // cs3016.cs: Arrays as attribute arguments is not CLS-compliant
2 // Line: 12
3
4 using System;
5 [assembly:CLSCompliant(true)]
6
7 public class CLSAttribute: Attribute {
8         public CLSAttribute() {}
9         public CLSAttribute(string[] array) {}
10 }
11
12 [CLSAttribute(new string[] { "", "" })]
13 public interface ITest {
14 }