TypeScript/tests/baselines/reference/styleOptions.types

17 lines
221 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== 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