mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
11 lines
151 B
Zig
11 lines
151 B
Zig
export fn f() void {
|
|
const a: noreturn = {};
|
|
_ = a;
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :2:25: error: cannot cast to noreturn
|