TypeScript/tests/baselines/reference/boolInsteadOfBoolean.js
2014-07-12 17:30:19 -07:00

10 lines
135 B
JavaScript

//// [boolInsteadOfBoolean.ts]
var x: bool;
var a: boolean = x;
x = a;
//// [boolInsteadOfBoolean.js]
var x;
var a = x;
x = a;