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: a7d8008feca5f0ff70dc300ef422356641f9a553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS3009: `CLSClass': base type `BaseClass' is not CLS-compliant
// Line: 12
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (false)]
public class BaseClass {
}

public class CLSClass: BaseClass {
}