mirror of https://github.com/tc39/test262.git
19 lines
391 B
JavaScript
19 lines
391 B
JavaScript
|
// copyright 2016 microsoft, inc. all rights reserved.
|
||
|
// this code is governed by the bsd license found in the license file.
|
||
|
|
||
|
/*---
|
||
|
author: brian terlson <brian.terlson@microsoft.com>
|
||
|
esid: pending
|
||
|
description: >
|
||
|
async function bodies are executed immediately (unlike generators)
|
||
|
---*/
|
||
|
|
||
|
let called;
|
||
|
async function foo() {
|
||
|
called = true;
|
||
|
await new Promise();
|
||
|
}
|
||
|
|
||
|
foo();
|
||
|
assert(called);
|