dlr bug
[mcs.git] / tests / test-cls-11.cs
blobc2c8699a8fa8ef15ec4df2748c00ba7eeac0443c
1 // Compiler options: -warnaserror
3 using System;
4 [assembly:CLSCompliant (true)]
6 [CLSCompliant (true)]
7 public abstract class CLSClass {
8 [CLSCompliant (true)]
9 public abstract void Test (IComparable arg);
12 public abstract class CLSCLass_2 {
13 public abstract void Test ();
16 public abstract class CLSClass_3 {
17 internal abstract void Test ();
20 [CLSCompliant(true)]
21 public interface ICallable
23 object Call(params object[] args);
24 object Target
26 get;
30 public class MainClass {
31 public static void Main () {