scramjet/rewriter/native/tests/2-function-default.js
2024-12-13 18:46:58 -08:00

6 lines
75 B
JavaScript

function f(g = globalThis, l = location) {
check(g);
check(l);
}
f();