```ts function f(x: Promise<string>) { x.toLowerCase() } ``` **Expected**: `Property 'toLowerCase' does not exist on type 'Promise<string>'. Did you forget to await the 'Promise<string>'?` **Actual**: `Property 'toLowerCase' does not exist on type 'Promise<string>'.`