TypeScript/tests/baselines/reference/boolInsteadOfBoolean.errors.txt

9 lines
332 B
Plaintext
Raw Normal View History

tests/cases/conformance/types/primitives/boolean/boolInsteadOfBoolean.ts(1,8): error TS2304: Cannot find name 'bool'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/types/primitives/boolean/boolInsteadOfBoolean.ts (1 errors) ====
var x: bool;
~~~~
!!! error TS2304: Cannot find name 'bool'.
2014-07-13 01:04:16 +02:00
var a: boolean = x;
x = a;