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-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0019-24.cs
blob
f6497bc9fdb8b9ba82f793b43851c767a761628f
1
// CS0019: Operator `+=' cannot be applied to operands of type `object' and `object'
2
// Line: 10
3
4
class
Program
5
{
6
static int
Main
()
7
{
8
object
[]
o
=
null
;
9
int
ii
=
2
;
10
o
[
ii
++] +=
new object
();
11
return
0
;
12
}
13
}