summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3019.cs
blob: f1f65ee409fc21ad7661d2dab8082472b8eb7af0 (plain)
1
2
3
4
5
6
7
8
9
10
// CS3019: CLS compliance checking will not be performed on `CLSClass' because it is not visible from outside this assembly
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (true)]
class CLSClass {
}