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

cs3009.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3aeb60b04bac0e24658f0b9243c54da04b6cd7d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs3009.cs: `CLSClass': base type `BaseClass' is not CLS-compliant
// Line: 11

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (false)]
public class BaseClass {
}

public class CLSClass: BaseClass {
}