1 2 3 4 5 6 7 8
async function test() { await inner(); await (inner()) + await inner(); } async function inner() { return 4; } await test();