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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-async-27.cs
blob
0854340143ce064dccc32a5f3311dcdd53813a81
1
using
System
;
2
using
System
.
Threading
;
3
using
System
.
Threading
.
Tasks
;
4
5
class
MainClass
6
{
7
async static
Task
AsyncTest
()
8
{
9
var
b
=
await
Task
.
Factory
.
StartNew
(() =>
13
);
10
}
11
12
public static void
Main
(
string
[]
args
)
13
{
14
for
(
int
i
=
0
;
i
<
100
; ++
i
)
15
AsyncTest
().
Wait
();
16
}
17
}