TypeScript/tests/baselines/reference/anyPlusAny1.types
2016-09-21 16:04:36 -07:00

18 lines
240 B
Plaintext

=== tests/cases/compiler/anyPlusAny1.ts ===
var x: any;
>x : any
x.name = "hello";
>x.name = "hello" : "hello"
>x.name : any
>x : any
>name : any
>"hello" : "hello"
var z = x + x;
>z : any
>x + x : any
>x : any
>x : any