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
2009-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs1534-2.cs
blob
554a8890544aa8c15a6bbc53685a95554754ba3a
1
// cs1534.cs: 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
}