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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs8082.cs
blob
70afa6b7e79857db605b56a9d22e7ee6152efe1f
1
// CS8082: An argument to nameof operator cannot include sub-expression
2
// Line: 9
3
4
class
C
5
{
6
void
Foo
()
7
{
8
object
o
=
null
;
9
var
s
=
nameof
(
o
.
ToString
().
Equals
);
10
}
11
}