blob: 40809ceda71288cca6b06fadc723a3e889fb6d7b (
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 (false)]
class CLSClass {
}
|