Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
ignored_statement_value.zig
pretty
plain
permalink
blame
history
•
9 lines
•
200 B
1
export fn foo() void {
2
1;
3
}
4
5
// error
6
//
7
// :2:5: error: value of type 'comptime_int' ignored
8
// :2:5: note: all non-void values must be used
9
// :2:5: note: to discard the value, assign it to '_'