2016-09-29 15:17:52 +00:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2017-03-14 22:10:56 +00:00
|
|
|
// Flags: --ignition --turbo --always-opt
|
2016-09-29 15:17:52 +00:00
|
|
|
|
|
|
|
function f () {
|
|
|
|
var x = "";
|
|
|
|
function g() {
|
|
|
|
try {
|
|
|
|
eval('');
|
|
|
|
return x;
|
|
|
|
} catch(e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return g();
|
|
|
|
}
|
|
|
|
|
|
|
|
f();
|