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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs3023.cs
blob
614a26dde39b6df5c91cd09ec782a2f1ec06915d
1
// cs3023.cs: CLSCompliant attribute has no meaning when applied to return types. Try putting it on the method instead
2
// Line: 8
3
// Compiler options: -warn:1 -warnaserror
4
5
using
System
;
6
[
assembly
:
CLSCompliant
(
true
)]
7
8
public class
Class
{
9
[
return
:
CLSCompliant
(
false
)]
10
public ulong
Test
()
11
{
12
return
4
;
13
}
14
}