aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/message/fail/class-fields-private-throw-write.js
blob: 93e9c135b97eeb463ea5c02f77900073dc5af04c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2018 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 X {
  #x;
  setX(o, val) { o.#x = val; }
}

new X().setX({}, 1);