Appearance
Disallow awaiting on non-promise values.
The await operator should only be used on Promise values.
await
Promise
async function bad() { await await promise; }