Use JSON for FFP tests
[hiphop-php.git] / hphp / hack / test / full_fidelity / cases / concurrent / concurrent_nested_with_async_closure_1.php
blobc2558e34c5daf5e66bea87299246ce672f258189
1 <?hh
3 async function f() {
4 concurrent {
5 await async {
6 concurrent {
7 await g();
8 await h();
11 await f();