blob: f9ffe61b8271590d3427db18b7e97ab776efd2f7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS3014: `I.Valid(bool)' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1
using System;
public interface I {
[CLSCompliant (true)]
void Valid (bool arg);
}
|