public-domain.js (274B)
1 /* 2 * Any copyright is dedicated to the Public Domain. 3 * http://creativecommons.org/licenses/publicdomain/ 4 */ 5 6 /*--- 7 flags: [noStrict] 8 description: | 9 pending 10 esid: pending 11 ---*/ 12 async function f() { 13 let 14 await 0; 15 } 16 17 assert.sameValue(true, f instanceof Function);