TypeScript/tests/baselines/reference/continueTarget4.types

14 lines
180 B
Plaintext
Raw Normal View History

2014-08-22 03:39:46 +02:00
=== tests/cases/compiler/continueTarget4.ts ===
target1:
>target1 : any
2015-04-13 21:36:11 +02:00
target2:
>target2 : any
2015-04-13 21:36:11 +02:00
while (true) {
>true : boolean
continue target2;
>target2 : any
2015-04-13 21:36:11 +02:00
}