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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0131.cs
blob
ab41e853ef84a75ecec0e3d8447cc6c2e98a2099
1
// CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2
// Line: 7
3
4
class
X
{
5
void
A
()
6
{
7
5
=
4
;
8
}
9
}