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

11 lines
478 B
Plaintext

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