blob: 22c69f252d0c37389dd441bad6bf8814e30dd7e4 [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: --always-opt --no-lazy
6
7function __f_38() {
8 try {
9 throw 0;
10 } catch (e) {
11 eval();
12 var __v_38 = { a: 'hest' };
13 __v_38.m = function () { return __v_38.a; };
14 }
15 return __v_38;
16}
17var __v_40 = __f_38();
18__v_40.m();