TypeScript/tests/baselines/reference/boolInsteadOfBoolean.errors.txt
2014-09-12 13:35:07 -07:00

9 lines
332 B
Plaintext

tests/cases/conformance/types/primitives/boolean/boolInsteadOfBoolean.ts(1,8): error TS2304: Cannot find name 'bool'.
==== tests/cases/conformance/types/primitives/boolean/boolInsteadOfBoolean.ts (1 errors) ====
var x: bool;
~~~~
!!! error TS2304: Cannot find name 'bool'.
var a: boolean = x;
x = a;