blob: cb9d9b0c3dacde062e3887244dc96f81d2ccc5a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// |reftest| error:SyntaxError
// Copyright (C) 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-continue-statement
description: IterationStatement search does not traverse static initialization block boundaries (label specified)
info: |
4.1.1 Static Semantics: Early Errors
ContinueStatement : continue ;
ContinueStatement : continue LabelIdentifier ;
- It is a Syntax Error if this ContinueStatement is not nested, directly or
indirectly (but not crossing function or static initialization block
boundaries), within an IterationStatement.
negative:
phase: parse
type: SyntaxError
features: [class-static-block]
---*/
$DONOTEVALUATE();
label: while(false) {
class C {
static {
continue label;
}
}
}
|