外观
禁止在非 Promise 值上 await。
await 运算符应仅用于 Promise 值。
await
Promise
async function bad() { await await promise; }