blob: 26e72beecaefdd0e351da95cb389db2c96fd2fb4 [file] [log] [blame]
'use strict';
function a() {
b();
}
function b() {
c();
}
function c() {
d(function() { throw new Error('Whoops!'); });
}
function d(f) {
f();
}
a();