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

9 lines
351 B
Plaintext

tests/cases/compiler/breakTarget6.ts(2,3): error TS1116: A 'break' statement can only jump to a label of an enclosing statement.
==== tests/cases/compiler/breakTarget6.ts (1 errors) ====
while (true) {
break target;
~~~~~~~~~~~~~
!!! error TS1116: A 'break' statement can only jump to a label of an enclosing statement.
}