zig/test/cases/simple_addition_and_subtraction.zig
Alex Rønne Petersen 4dba253cd2
test: pull tests in test/cases/llvm/ up to test/cases/
There is nothing inherently LLVM-specific about any of these.
2025-09-16 23:39:29 +02:00

22 lines
316 B
Zig

fn add(a: i32, b: i32) i32 {
return a + b;
}
pub fn main() void {
var a: i32 = -5;
_ = &a;
const x = add(a, 7);
var y = add(2, 0);
y -= x;
assert(y == 0);
}
fn assert(ok: bool) void {
if (!ok) unreachable;
}
// run
// backend=selfhosted,llvm
// target=x86_64-linux,x86_64-macos
//