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

6 lines
195 B
Plaintext

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