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
/
cs1994.cs
blob
94dc107cc6ffe553685dbca8ccd6cf38240d83d7
1
// CS1994: `C.Test()': The async modifier can only be used with methods that have a body
2
// Line: 6
3
4
abstract class
C
5
{
6
public async abstract void
Test
();
7
}