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

18 lines
233 B
Plaintext

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