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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs3002-2.cs
blob
eb2f51213e8fd8a52f0d1026f8c573fa74d3b486
1
// cs3002-2.cs: Return type of `CLSClass.Foo()' is not CLS-compliant
2
// Line: 13
3
4
using
System
;
5
[
assembly
:
CLSCompliant
(
true
)]
6
7
public class
CLSClass
{
8
[
CLSCompliant
(
false
)]
9
public ulong
Valid
() {
10
return
1
;
11
}
12
13
protected internal ulong
Foo
() {
14
return
1
;
15
}
16
17
static void
Main
() {}
18
}