blob: 30b3f219e9a1a733fefdac8b92a1e01b6be58f7e [file] [log] [blame]
// Copyright 2016 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.
function target() {};
var proxy = new Proxy(target, {
get() {
// Reset the initial map of the target.
target.prototype = 123;
}});
new proxy();