mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-14 06:50:01 -04:00
7 lines
100 B
JavaScript
7 lines
100 B
JavaScript
|
|
function f(location, globalThis) {
|
|
assert(location === 1)
|
|
assert(globalThis === 2)
|
|
}
|
|
|
|
f(1, 2);
|