mirror of
https://github.com/tc39/test262.git
synced 2025-07-15 18:14:43 +02:00
20 lines
401 B
Plaintext
20 lines
401 B
Plaintext
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-semantics-static-semantics-assignmenttargettype
|
|
desc: >
|
|
PrimaryExpression AsyncFunctionExpression; Return invalid.
|
|
template: invalid
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
---*/
|
|
|
|
//- assignmenttarget
|
|
async function () {}
|
|
//- operator
|
|
=
|
|
//- value
|
|
1
|