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-03-02 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
cs0564-2.cs
blob
121d86884e3a7892021854a42c5fa96a3f399505
1
// cs0564.cs: 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
<< (
object value
,
int
count
) {
6
return
0
;
7
}
8
}