a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
34 lines
567 B
C#
34 lines
567 B
C#
// Compiler options: -warnaserror
|
|
|
|
using System;
|
|
[assembly:CLSCompliant (true)]
|
|
|
|
[CLSCompliant (true)]
|
|
public abstract class CLSClass {
|
|
[CLSCompliant (true)]
|
|
public abstract void Test (IComparable arg);
|
|
}
|
|
|
|
public abstract class CLSCLass_2 {
|
|
public abstract void Test ();
|
|
}
|
|
|
|
public abstract class CLSClass_3 {
|
|
internal abstract void Test ();
|
|
}
|
|
|
|
[CLSCompliant(true)]
|
|
public interface ICallable
|
|
{
|
|
object Call(params object[] args);
|
|
object Target
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
|
|
public class MainClass {
|
|
public static void Main () {
|
|
}
|
|
}
|