TypeScript/tests/baselines/reference/checkJsFiles5.types
2017-03-29 08:52:00 -07:00

12 lines
150 B
Plaintext

=== tests/cases/compiler/a.js ===
// @ts-nocheck
var x = "string";
>x : string
>"string" : "string"
x = 0;
>x = 0 : 0
>x : string
>0 : 0