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
/
cs1534.cs
blob
be381f85153359547006e109aeca1aafc0505e75
1
// CS1534: Overloaded binary operator `*' takes two parameters
2
// Line: 6
3
4
class
C
5
{
6
public static
C
operator
* (
C a
,
C b
,
C d
)
7
{
8
return null
;
9
}
10
}