* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
[mono.git] / mcs / errors / cs3016-2.cs
1 // cs3016.cs: Arrays as attribute arguments are not CLS-compliant
2 // Line: 5
3
4 using System;
5 [assembly:CLSAttribute (new bool [] {true, false})]
6 [assembly:CLSCompliant (true)]
7
8 public class CLSAttribute: Attribute {
9         public CLSAttribute () {
10         }
11         
12         public CLSAttribute(bool[] array) {
13         }
14 }