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: c574f1a195029ac33dba6b3b072cde80bc169dbb (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 {
}