blob: cb261f9c5aa140b6baa12ce9d5f71c1c45063881 [file] [log] [blame]
//@ defaultNoSamplingProfilerRun
// This should not crash
var boundFunc;
function testPromise(func) {
var p1 = new Promise(func);
}
function promiseFunc(resolve, reject) {
boundFunc();
}
boundFunc = testPromise.bind(null, promiseFunc);
boundFunc();