blob: efc263b66fb8ba2ebca8e7de4fae75bc65b0203e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Test that Annex B function interaction with 'arguments'.
(function() {
assertEq(typeof arguments, "object");
{ function arguments() {} }
assertEq(typeof arguments, "function");
})();
if (typeof reportCompare === "function")
reportCompare(0, 0);
|