blob: 21bf888ed7b8a7a7d8a5b0358fae5fdbe69b9ede (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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-class-definitions
description: The block's statement list is optional
info: |
Syntax
[...]
ClassStaticBlockStatementList :
StatementList[~Yield, +Await, ~Return]opt
features: [class-static-block]
---*/
class C {
static {}
}
reportCompare(0, 0);
|