TypeScript/tests/baselines/reference/asiPreventsParsingAsTypeAlias01.types

20 lines
254 B
Plaintext
Raw Normal View History

2015-06-03 00:47:23 +02:00
=== tests/cases/conformance/types/typeAliases/asiPreventsParsingAsTypeAlias01.ts ===
var type;
>type : any
var string;
>string : any
var Foo;
>Foo : any
type
2015-06-03 21:05:53 +02:00
>type : any
2015-06-03 00:47:23 +02:00
Foo = string;
2015-06-03 21:05:53 +02:00
>Foo = string : any
>Foo : any
>string : any
2015-06-03 00:47:23 +02:00