Files
bun.sh/integration/snapshots/void-shouldnt-delete-call-expressions.debug.js
Jarred Sumner d47419f471 Snapshots
2021-09-30 22:37:46 -07:00

11 lines
248 B
JavaScript

var was_called = false;
function thisShouldBeCalled() {
was_called = true;
}
thisShouldBeCalled();
export function test() {
if (!was_called)
throw new Error("Expected thisShouldBeCalled to be called");
return testDone(import.meta.url);
}