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
/
cs4010-2.cs
blob
61cf3462f03fd83d6168c5c3acfbe14aaa0120a3
1
// CS4010: Cannot convert async anonymous method to delegate type `System.Func<string>'
2
// Line: 10
3
4
using
System
;
5
6
class
C
7
{
8
public static void
Main
()
9
{
10
Func
<
string
>
a
=
async delegate
{ }
;
11
}
12
}