Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
unreachable_code.zig
pretty
plain
permalink
blame
history
•
11 lines
•
151 B
1
export fn a() void {
2
return;
3
b();
4
}
5
6
fn b() void {}
7
8
// error
9
//
10
// :3:6: error: unreachable code
11
// :2:5: note: control flow is diverted here