blob: c2c8699a8fa8ef15ec4df2748c00ba7eeac0443c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// 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 () {
}
}
|