michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: */ michael@0: michael@0: function strictAssignParameterGetElement(a) michael@0: { michael@0: "use strict"; michael@0: a = 17; michael@0: return arguments[0]; michael@0: } michael@0: michael@0: for (var i = 0; i < 5; i++) michael@0: assertEq(strictAssignParameterGetElement(42), 42);