blob: 9b201e6f0191ed36c9a597070931726344189842 [file] [log] [blame]
// 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 static getter and a private instance setter
features: [class-static-methods-private, class-methods-private]
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
class C {
static get #f();
set #f(v) {}
}