rust/tests/ui/binop/issue-77910-2.rs
2023-01-11 09:32:08 +00:00

10 lines
154 B
Rust

fn foo(s: &i32) -> &i32 {
let xs;
xs
}
fn main() {
let y;
if foo == y {}
//~^ ERROR binary operation `==` cannot be applied to type
}