2016-06-13 17:19:47 +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.
|
|
|
|
|
2016-07-25 12:55:20 +00:00
|
|
|
// Flags: --harmony-async-await
|
2016-06-13 17:19:47 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
} catch(e) {; }
|
|
|
|
function __f_7(expected, run) {
|
|
|
|
var __v_10 = run();
|
|
|
|
};
|
|
|
|
__f_7("[1,2,3]", () => (function() {
|
|
|
|
return (async () => {[...await arguments] })();
|
|
|
|
})());
|