Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-cls-11.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7e47e743e1d925c1e43e2a8831bb0aea8e68d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 class MainClass {
        public static void Main () {
        }
}