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
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs3014-5.cs
blob
d1cd732346ebf106f5f3931d7eeeb8e70faa2c1f
1
// CS3014: `E' 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
[
CLSCompliant
(
true
)]
8
public enum
E
{
9
}