blob: 0b14b9741d3793a2ed7e380bf90dbf4545f6216b [file] [log] [blame]
function test() {
function foo() {};
return foo.bind({}).name === "bound foo" &&
(function(){}).bind({}).name === "bound ";
}
if (!test())
throw new Error("Test failed");