Files
bun.sh/test/regression/issue/20144/20144.fixture.ts
2025-06-03 23:41:37 -07:00

16 lines
220 B
TypeScript

import { cc } from "bun:ffi";
import assert from "node:assert";
assert.ok(process.send);
cc({
source: "./example.c",
symbols: {
foo: { args: [], returns: "void" },
},
});
process.send("hej");
while (true);