blob: 3300674f4c0043ab6270cec70b8b6e9b7780d083 [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 function expressions return promises
---*/
var p = async function() { }();
assert(p instanceof Promise, "async functions return promise instances");