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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1534-2.cs
blob
2339b533acb3705d6d8ef1c17c8ab14bae34c25c
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 c
,
C d
)
7
{
8
return null
;
9
}
10
}