summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/private-non-static-setter-static-getter-early-error.js
blob: 3710b7c81f9705be5d81c66bd8fe3c7a16dbb17c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// |reftest| error:SyntaxError
// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
description: >
    It is a Syntax Error if we declare a private instance setter and a static private getter
features: [class-static-methods-private, class-methods-private]
negative:
  phase: parse
  type: SyntaxError
---*/

$DONOTEVALUATE();

class C {
  set #f(v) {}
  static get #f() {}
}