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-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs3018-5.cs
blob
f421247553011666c54c99b937bfe4ab0e285508
1
// CS3018: `C.field' cannot be marked as CLS-compliant because it is a member of non CLS-compliant type `C'
2
// Line: 10
3
// Compiler options: -warnaserror -warn:1
4
5
using
System
;
6
[
assembly
:
CLSCompliant
(
false
)]
7
8
public class
C
{
9
[
CLSCompliant
(
true
)]
10
public long
field
;
11
}