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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs8030-3.cs
blob
1ff2894089f434c2804830d5b7fab56b48a51d29
1
// CS8030: Anonymous function or lambda expression converted to a void returning delegate cannot return a value
2
// Line: 11
3
4
using
System
;
5
using
System
.
Threading
.
Tasks
;
6
7
class
C
8
{
9
public async void
GetValue
()
10
{
11
return await
Task
.
FromResult
(
100
);
12
}
13
}