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

19 lines
237 B
Plaintext

=== tests/cases/compiler/styleOptions.ts ===
///<style eqeqeq="on" strict="on" />
var x = 1;
>x : number
>1 : 1
var y = 1;
>y : number
>1 : 1
var t = x == y;
>t : boolean
>x == y : boolean
>x : number
>y : number