[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / tests / test-cls-16.cs
1 // Compiler options: -warnaserror
2
3 using System;
4 [assembly:CLSCompliant (true)]
5
6 [CLSCompliant (false)]
7 [CLSAttribute (new bool [] {true, false})]
8 public class CLSAttribute: Attribute {
9        public CLSAttribute(bool[] array) {
10        }
11 }
12
13 public class ClassMain {
14         public static void Main () {}
15 }