aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/message/fail/class-fields-private-class-in-function.js
blob: 215e0839628237df32d925f0a2828f1543eddf33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Flags: --harmony-private-fields

class Y {
  makeClass() {
    return class {
      setA(val) { this.#a = val; }
      getA() { return this.#a; }
      getB() { return this.#b; }
    }
  }
  #a;
}