Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
minmax_missing_args.zig
pretty
plain
permalink
blame
history
•
7 lines
•
177 B
1
comptime { _ = @min(1); }
2
comptime { _ = @max(1); }
3
4
// error
5
//
6
// :1:16: error: expected at least 2 arguments, found 1
7
// :2:16: error: expected at least 2 arguments, found 1