2018-09-07 17:07:13 +02:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
// Flags: --always-turbofan
|
2018-09-07 17:07:13 +02:00
|
|
|
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
|
|
try { typeof x } catch (e) {};
|
|
|
|
let x;
|
|
|
|
}
|