1 2 3 4 5 6 7
// |jit-test| error:InternalError var a = []; var sort = a.sort.bind(a); a.push(sort); a.push(sort); sort(sort);