summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-66667-function-cmp-cycle.rs
blob: b4f09fbbb04d03806cbc890c692cdb00d1690f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
fn first() {
    second == 1 //~ ERROR binary operation
    //~^ ERROR mismatched types
    //~| ERROR mismatched types
}

fn second() {
    first == 1 //~ ERROR binary operation
    //~^ ERROR mismatched types
    //~| ERROR mismatched types
}

fn bar() {
    bar == 1 //~ ERROR binary operation
    //~^ ERROR mismatched types
    //~| ERROR mismatched types
}

fn main() {}