await-BindingIdentifier-in-global.js (374B)
1 // Copyright 2016 Microsoft, Inc. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 author: Brian Terlson <brian.terlson@microsoft.com> 6 esid: pending 7 description: > 8 Await is allowed as a binding identifier in global scope 9 ---*/ 10 11 async function await() { return 1 } 12 assert(await instanceof Function); 13 14 15 reportCompare(0, 0);