blob: 538b0ef524eca11cae85cf8772a95e7e5ebb11a8 [file] [log] [blame]
Ben Murdochc5610432016-08-08 18:44:38 +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
5// Flags: --allow-natives-syntax --harmony-instanceof
6
7function F() {}
8var f = new F
9
10var proto = Object.getPrototypeOf(F);
11Object.setPrototypeOf(F, null);
12F[Symbol.hasInstance] = function(v) { return true };
13Object.setPrototypeOf(F, proto);
14
15function foo(x) { return x instanceof F };
16%OptimizeFunctionOnNextCall(foo);
17assertTrue(foo(1));