TypeScript/tests/baselines/reference/asiPreventsParsingAsTypeAlias01.types
2015-06-03 12:05:53 -07:00

20 lines
254 B
Plaintext

=== tests/cases/conformance/types/typeAliases/asiPreventsParsingAsTypeAlias01.ts ===
var type;
>type : any
var string;
>string : any
var Foo;
>Foo : any
type
>type : any
Foo = string;
>Foo = string : any
>Foo : any
>string : any