repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
resync
[mcs.git]
/
errors
/
cs3021.cs
blob
720e65030e24c75199edb28fb9422c5b4af47889
1
// cs3021.cs: `I' does not need a CLSCompliant attribute because the assembly is not marked as CLS-compliant
2
// Line: 9
3
// Compiler options: -warn:2 -warnaserror
4
5
using
System
;
6
7
[
CLSCompliant
(
false
)]
8
public interface
I
9
{
10
}