blob: bd8fa311023b4ea644012ecfeca350f93cd35a29 [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// Copyright 2015 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
6
7// This tests that inlining a constructor call to a function which cannot be
8// used as a constructor (e.g. arrow function) still throws correctly.
9
10var g = () => {}
11
12function f() {
13 return new g();
14}
15
16assertThrows(f);
17assertThrows(f);
18%OptimizeFunctionOnNextCall(f);
19assertThrows(f);