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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0131-6.cs
blob
8af3e939fbfea4d4f2661bdd8136396fc88d1031
1
// CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2
// Line: 8
3
4
class
X
5
{
6
void
Test
()
7
{
8
Foo
() =
1
;
9
}
10
11
static int
Foo
()
12
{
13
return
1
;
14
}
15
}