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 }*/
}