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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs1998.cs
blob
a61ced73dfdd2ae36ff4f778f64aea1da43ad4ea
1
// CS1998: Async block lacks `await' operator and will run synchronously
2
// Line: 10
3
// Compiler options: -warnaserror
4
5
using
System
;
6
using
System
.
Threading
.
Tasks
;
7
8
class
C
9
{
10
static async
Task
<
int
>
Method
()
11
{
12
return
0
;
13
}
14
15
public static void
Main
()
16
{
17
}
18
}