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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0564.cs
blob
88a0f59e98ba86be8965f7e67281e3c8fa067583
1
// CS0564: Overloaded shift operator must have the type of the first operand be the containing type, and the type of the second operand must be int
2
// Line: 5
3
4
class
SampleClass
{
5
public static int operator
<< (
SampleClass
value
,
SampleClass count
) {
6
return
0
;
7
}
8
}