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-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0590-2.cs
blob
4a999d46019d02235411b8c39ef1a15beb694dd0
1
// cs0590.cs: User-defined operators cannot return void
2
// Line: 5
3
4
class
SampleClass
{
5
public static void operator
<< (
SampleClass
value
,
int
value2
) {
6
return null
;
7
}
8
}