blob: dcd41c83fa86e7728d8e69398163dfe78393b6da [file] [log] [blame]
// 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 functions return promises
---*/
async function foo() { };
var p = foo();
assert(p instanceof Promise, "async functions return promise instances");