TypeScript/tests/baselines/reference/boolInsteadOfBoolean.errors.txt
2014-09-11 16:11:08 -07:00

6 lines
209 B
Plaintext

==== 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;