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

11 lines
480 B
Plaintext

tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement2.ts(3,5): error TS1107: Jump target cannot cross function boundary.
==== tests/cases/conformance/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement2.ts (1 errors) ====
while (true) {
function f() {
continue;
~~~~~~~~~
!!! error TS1107: Jump target cannot cross function boundary.
}
}