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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs3014-8.cs
blob
fae0c539401ea13a0feccf49d55ac1ef4fb31707
1
// CS3014: `E2.Foo' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
2
// Line: 8
3
// Compiler options: -warnaserror -warn:1
4
5
using
System
;
6
7
public enum
E2
{
8
[
CLSCompliant
(
true
)]
9
Foo
10
}