TypeScript/tests/baselines/reference/styleOptions.types
2014-08-15 14:37:48 -07:00

17 lines
221 B
Plaintext

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