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
Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0590-2.cs
blob
41d67966217509939f1614628a19b07064b63ae6
1
// CS0590: 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
}