TypeScript/tests/baselines/reference/continueTarget4.types
2016-09-01 14:25:44 -07:00

15 lines
179 B
Plaintext

=== tests/cases/compiler/continueTarget4.ts ===
target1:
>target1 : any
target2:
>target2 : any
while (true) {
>true : true
continue target2;
>target2 : any
}