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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs4003.cs
blob
f043564f9acacc2c2d577fcd6d97c6a081ed8cd2
1
// CS4003: `await' cannot be used as an identifier within an async method or lambda expression
2
// Line: 8
3
4
class
Tester
5
{
6
async void
Test
()
7
{
8
int await
=
1
;
9
}
10
}