mirror of https://github.com/tc39/test262.git
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: prod-AsyncArrowHead
|
|
description: async arrows cannot have a line terminator between "async" and the formals
|
|
negative:
|
|
phase: early
|
|
type: SyntaxError
|
|
---*/
|
|
|
|
async
|
|
(foo) => { }
|