TypeScript/tests/baselines/reference/propertyAccess6.types
2015-04-15 16:44:20 -07:00

12 lines
170 B
Plaintext

=== tests/cases/compiler/propertyAccess6.ts ===
var foo: any;
>foo : any
foo.bar = 4;
>foo.bar = 4 : number
>foo.bar : any
>foo : any
>bar : any
>4 : number