TypeScript/tests/baselines/reference/propertyAccess6.types

11 lines
157 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/propertyAccess6.ts ===
var foo: any;
>foo : any
foo.bar = 4;
>foo.bar = 4 : number
>foo.bar : any
>foo : any
>bar : any