Switch to compiler-tester
[mono.git] / mcs / tests / test-cls-16.cs
1 using System;
2 [assembly:CLSCompliant (true)]
3
4 [CLSCompliant (false)]
5 [CLSAttribute (new bool [] {true, false})]
6 public class CLSAttribute: Attribute {
7        public CLSAttribute(bool[] array) {
8        }
9 }
10
11 public class ClassMain {
12         public static void Main () {}
13 }