nativity/lib/std/testing.nat
David Gonzalez Martin 8e4fc03d1b Modernize std API
2024-03-08 16:35:40 -06:00

11 lines
148 B
Plaintext

const Error = error{
unexpected_result,
};
const expect(ok: bool) Error!void {
if (!ok) {
return Error.unexpected_result;
}
}