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: d52f2cfec4c9898d4e1c987290ebf841161bd42a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ();
}

public class MainClass {
        public static void Main () {
        }
}