Files
zig/test/cases/compile_errors/chained_comparison_operators.zig
2022-06-30 09:57:38 +02:00

10 lines
166 B
Zig

export fn a(value: u32) bool {
return 1 < value < 1000;
}
// error
// backend=stage2
// target=native
//
// :2:22: error: comparison operators cannot be chained