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
/
cs0428.cs
blob
5ed8eccfec97bbb06234216facf1d48669c58e0e
1
// CS0428: Cannot convert method group `a' to non-delegate type `int'. Consider using parentheses to invoke the method
2
// Line: 12
3
4
class
X
{
5
int
a
(
int
a
)
6
{
7
return
0
;
8
}
9
10
void
b
()
11
{
12
int
x
=
a
;
13
}
14
}