blob: 85a602fd40a8942c99f96a82dfd4ec10ecd51669 (
plain)
1
2
3
4
5
6
7
8
9
|
comptime { _ = @min(1); }
comptime { _ = @max(1); }
// error
// backend=stage2
// target=native
//
// :1:16: error: expected at least 2 arguments, found 1
// :2:16: error: expected at least 2 arguments, found 1
|