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-02-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
errors
/
cs0131-2.cs
blob
67ebaaaf13d471470dd4229a5d98a03594b992b4
1
// CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2
// Line: 10
3
using
System
;
4
5
class
X
6
{
7
static void
Main
()
8
{
9
int
a
=
7
;
10
+
a
=
9
;
11
}
12
}