blob: 242b4be7724a5f1eab70290bedaa09303561cf5b [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
Ben Murdoch61f157c2016-09-16 13:49:30 +01005// Flags: --allow-natives-syntax
Ben Murdochc5610432016-08-08 18:44:38 +01006
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));