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

22 lines
319 B
Text

=== tests/cases/conformance/types/typeAliases/asiPreventsParsingAsTypeAlias02.ts ===
var type;
>type : any
var string;
>string : any
var Foo;
>Foo : any
namespace container {
>container : typeof container
type
>type : any
Foo = string;
>Foo = string : any
>Foo : any
>string : any
}