repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs3014.cs
blob
f9ffe61b8271590d3427db18b7e97ab776efd2f7
1
// CS3014: `I.Valid(bool)' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
2
// Line: 9
3
// Compiler options: -warnaserror -warn:1
4
5
using
System
;
6
7
public interface
I
{
8
[
CLSCompliant
(
true
)]
9
void
Valid
(
bool
arg
);
10
}