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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
tests
/
test-tuple-08.cs
blob
fd3375b4df6634e89db06490347eba12bc5e9620
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
using
System
.
Threading
.
Tasks
;
4
5
class
X
6
{
7
public static void
Main
()
8
{
9
var
x
=
new
X
();
10
x
.
Test
().
Wait
();
11
}
12
13
int
a
,
b
;
14
15
async
Task
Test
()
16
{
17
(
a
,
b
) =
await
Waiting
();
18
}
19
20
Task
<(
int
,
int
)>
Waiting
()
21
{
22
return
Task
.
FromResult
((
1
,
3
));
23
}
24
}