blob: 9b809bab69b3aa38b5dc879d372fd64f413ea17b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// |jit-test| error:AsmJS modules do not yet support cloning; skip-if: !isAsmJSCompilationAvailable()
var g = newGlobal();
cloneAndExecuteScript(`
function h() {
function f() {
'use asm';
function g() {}
return g
}
return f;
}
`, g);
|