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

// error
//
// :2:22: error: comparison operators cannot be chained