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

cs3019-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cedbcf75541cac2479d4c5f23fc8a0602dbb8906 (plain)
1
2
3
4
5
6
7
8
9
10
// cs3019.cs: CLS compliance checking will not be performed on 'CLSClass' because it is private or internal
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (false)]
class CLSClass {
}