<?hh // strict

async function foo(): Awaitable<string> {
  return await (() ==> 'Hello, world')();
}
