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
/
cs0023-8.cs
blob
98f45490ce5400da2f3e21cf6f4d29ac41e80c5a
1
// cs0023: The `+' operator cannot be applied to operand of type `X'
2
// Line : 6
3
4
class
X
{
5
static void
Foo
(
object
o
)
6
{
7
}
8
9
static void
Main
() {
10
Foo
(+(
X
)
null
);
11
}
12
}
13
14
15