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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs4009.cs
blob
f628c3648db360d55a47a7649873b2aafb7c24ba
1
// CS4009: `C.Main()': an entry point cannot be async method
2
// Line: 8
3
4
class
C
5
{
6
public static async void
Main
()
7
{
8
await
Call
();
9
}
10
11
static async void
Call
()
12
{
13
}
14
}