mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
ca4ee9ae73
Fixes #18415
17 lines
234 B
Zig
17 lines
234 B
Zig
pub const panic = @compileError("");
|
|
|
|
export fn entry() usize {
|
|
var x: usize = 0;
|
|
x +%= 1;
|
|
x -%= 1;
|
|
x *%= 2;
|
|
x +|= 1;
|
|
x -|= 1;
|
|
x *|= 2;
|
|
return x;
|
|
}
|
|
|
|
// compile
|
|
// output_mode=Obj
|
|
// backend=stage2,llvm
|