Use JSON for FFP tests
[hiphop-php.git] / hphp / hack / test / full_fidelity / cases / concurrent / concurrent_with_other_await.php
blob496e85d8b1f122fb426590b2b1206064415d0057
1 <?hh
2 async function foo1(): Awaitable<void> {
3 await g();
4 concurrent {
5 $x = await genx();
6 await geny();
8 await h();