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

13 lines
504 B
Plaintext

tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement4.ts(4,5): error TS1107: Jump target cannot cross function boundary.
==== tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement4.ts (1 errors) ====
TWO:
while (true){
var x = () => {
continue TWO;
~~~~~~~~~~~~~
!!! error TS1107: Jump target cannot cross function boundary.
}
}