blob: 7b23ef41960346b2ff6342603f1b40569de64458 [file] [log] [blame]
Ben Murdoch61f157c2016-09-16 13:49:30 +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: --harmony-async-await --ignition-generators
6
7try {
8} catch(e) {; }
9function __f_7(expected, run) {
10 var __v_10 = run();
11};
12__f_7("[1,2,3]", () => (function() {
13 return (async () => {[...await arguments] })();
14 })());