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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
test-async-46.cs
blob
5a0aed352f326ea18666aeb9500220516f2c572c
1
using
System
;
2
using
System
.
Threading
.
Tasks
;
3
4
partial class
X
5
{
6
partial void
Foo
();
7
8
async partial void
Foo
()
9
{
10
await
Task
.
FromResult
(
1
);
11
}
12
13
public static void
Main
()
14
{
15
}
16
}