aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/chained_comparison_operators.zig
blob: 32c6ee64b2e58764bb48aecba0c931d66d71cd9a (plain)
1
2
3
4
5
6
7
8
9
export fn a(value: u32) bool {
    return 1 < value < 1000;
}

// error
// backend=stage2
// target=native
//
// :2:22: error: comparison operators cannot be chained