mirror of
https://github.com/tc39/test262.git
synced 2025-08-14 06:28:24 +02:00
14 lines
325 B
Plaintext
14 lines
325 B
Plaintext
// Copyright (C) 2017 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
path: async/async-function-declaration-
|
|
name: async function declaration
|
|
esid: prod-AsyncFunctionDeclaration
|
|
flags: [async]
|
|
---*/
|
|
|
|
async function fn() {
|
|
await 1;
|
|
/*{ body }*/
|
|
}
|