TypeScript/tests/baselines/reference/asyncFunctionDeclaration13_es2017.types
Anders Hejlsberg a4f9bf0fce
Create type aliases for unresolved type symbols (#45976)
* Create type aliases for unresolved type symbols

* Accept new baselines

* Update fourslash tests

* Unresolved import aliases create tagged unresolved symbols

* Add comments

* Accept new baselines

* Add fourslash tests
2021-09-23 13:21:27 -07:00

10 lines
255 B
Plaintext

=== tests/cases/conformance/async/es2017/functionDeclarations/asyncFunctionDeclaration13_es2017.ts ===
async function foo(): Promise<void> {
>foo : () => Promise<void>
// Legal to use 'await' in a type context.
var v: await;
>v : await
}