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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0023-10.cs
blob
061263ffb6c8d1b02db3a90b93f46d6fa53e1a9b
1
// cs0023: The `+' operator cannot be applied to operand of type `X'
2
// Line : 6
3
4
class
X
{
5
static
X x
;
6
static object
o
= +
x
;
7
}