TypeScript/tests/baselines/reference/propertyAccess6.types
2016-09-01 14:25:44 -07:00

12 lines
160 B
Plaintext

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