blob: 643286f241bef1d74d0b9e129175903e9dbc7066 (
plain)
1
2
3
4
5
6
7
8
9
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
var expect = "global";
var actual = expect;
function f([actual]) { }
f(["local"]);
reportCompare(expect, actual, "ok");
|