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-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs3002-9.cs
blob
fc45df1dfabc103306ee2584c8b5e41380915294
1
// cs3002-9.cs: Return type of `Delegate' is not CLS-compliant
2
// Line: 7
3
4
using
System
;
5
[
assembly
:
CLSCompliant
(
true
)]
6
7
public delegate
CLSDelegate
Delegate
();
8
9
[
Serializable
]
10
[
CLSCompliant
(
false
)]
11
public class
CLSDelegate
{
12
}