mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
18 lines
315 B
Zig
18 lines
315 B
Zig
export fn _start() noreturn {
|
|
const b = true;
|
|
var f: u32 = 1;
|
|
@compileLog(b, 20, f, x);
|
|
@compileLog(1000);
|
|
var bruh: usize = true;
|
|
_ = bruh;
|
|
unreachable;
|
|
}
|
|
export fn other() void {
|
|
@compileLog(1234);
|
|
}
|
|
fn x() void {}
|
|
|
|
// error
|
|
//
|
|
// :6:23: error: expected type 'usize', found 'bool'
|