New test.
[mono.git] / mcs / tests / test-cls-11.cs
1 using System;
2 [assembly:CLSCompliant (true)]
3
4 [CLSCompliant (true)]
5 public abstract class CLSClass {
6         [CLSCompliant (true)]
7         public abstract void Test (IComparable arg);
8 }
9
10 public abstract class CLSCLass_2 {
11         public abstract void Test ();
12 }
13
14 public abstract class CLSClass_3 {
15         internal abstract void Test ();
16 }
17
18 [CLSCompliant(true)]
19 public interface ICallable
20 {
21         object Call(params object[] args);
22         object Target
23         {
24                 get;
25         }
26 }
27
28 public class MainClass {
29         public static void Main () {
30         }
31 }