Switch to compiler-tester
[mono.git] / mcs / tests / test-cls-15.cs
1 using System;
2 [assembly:CLSCompliant (true)]
3
4 public class CLSAttribute_1: Attribute {
5        public CLSAttribute_1(int[] array) {
6        }
7    
8        public CLSAttribute_1(int array) {
9        }
10 }
11
12 [CLSCompliant (false)]
13 public class CLSAttribute_2: Attribute {
14        private CLSAttribute_2(int arg) {
15        }   
16 }
17
18 internal class CLSAttribute_3: Attribute {
19        public CLSAttribute_3(int[] array) {
20        }
21 }
22
23 [CLSCompliant (false)]
24 public class CLSAttribute_4: Attribute {
25        private CLSAttribute_4(int[] args) {
26        }   
27 }
28
29 public class ClassMain {
30         public static void Main () {}
31 }