summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-crbug-599073-3.js
blob: 2892f562aa0245aba7ed15fe6b607aa57b24f553 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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.

Object.defineProperty(Number.prototype, "v", {get:constructor});

function foo(b) { return b.v; }

foo(2);
foo(3);
foo(4);