TypeScript/tests/baselines/reference/parser_duplicateLabel3.types
2015-04-15 16:44:20 -07:00

19 lines
287 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel3.ts ===
target:
>target : any
while (true) {
>true : boolean
function f() {
>f : () => void
target:
>target : any
while (true) {
>true : boolean
}
}
}