rust/tests/ui/binop/issue-77910-2.rs

10 lines
183 B
Rust

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