TypeScript/tests/baselines/reference/parser_duplicateLabel3.types
2015-10-13 11:17:10 -07:00

20 lines
289 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
}
}
}