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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0131-3.cs
blob
23dbfe1146e1aa84d2be2b68aa791539e6e04414
1
// CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2
// Line: 12
3
4
using
System
;
5
using
System
.
Collections
;
6
7
class
Test
{
8
public static void
Main
(
string
[]
args
) {
9
ArrayList al
=
new
ArrayList
();
10
al
[
0
] =
0
;
11
12
Console
.
WriteLine
(((
int
)
al
[
0
])++);
13
}
14
}