rust/tests/ui/issues/issue-66667-function-cmp-cycle.rs
2023-01-11 09:32:08 +00:00

17 lines
281 B
Rust

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