TypeScript/tests/baselines/reference/continueTarget6.errors.txt

9 lines
389 B
Plaintext
Raw Normal View History

tests/cases/compiler/continueTarget6.ts(2,3): error TS1115: A 'continue' statement can only jump to a label of an enclosing iteration statement.
2014-08-22 03:39:46 +02:00
==== tests/cases/compiler/continueTarget6.ts (1 errors) ====
while (true) {
continue target;
~~~~~~~~~~~~~~~~
!!! error TS1115: A 'continue' statement can only jump to a label of an enclosing iteration statement.
2014-08-22 03:39:46 +02:00
}