blob: 98de3406b7925a0ed4b77c4f66dca5f8b411c35d [file] [log] [blame]
Ben Murdochda12d292016-06-02 14:46:10 +01001// Copyright 2016 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5var custom_toString = function() {
6 var boom = custom_toString.caller;
7 return boom;
8}
9
10var object = {};
11object.toString = custom_toString;
12
13try { Object.hasOwnProperty(object); } catch (e) {}