TypeScript/tests/baselines/reference/boolInsteadOfBoolean.js

10 lines
135 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [boolInsteadOfBoolean.ts]
var x: bool;
var a: boolean = x;
x = a;
//// [boolInsteadOfBoolean.js]
var x;
var a = x;
x = a;