* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs3016-3.cs
blobd7d61355067a771911d9e0d36cfb7c0f92553112
1 // cs3016-3.cs: Arrays as attribute arguments are not CLS-compliant
2 // Line: 12
4 using System;
5 [assembly:CLSCompliant(true)]
7 public class CLSAttribute: Attribute {
8 public CLSAttribute() {}
9 public CLSAttribute(string[] array) {}
12 [CLSAttribute(new string[] { "", "" })]
13 public interface ITest {