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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1983.cs
blob
a2ef6c150d6ed181f9479c4df183f3442e1a4d04
1
// CS1983: The return type of an async method must be void, Task, or Task<T>
2
// Line: 6
3
4
class
C
5
{
6
public async object
Test
()
7
{
8
}
9
}