mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 19:08:20 +00:00
10 lines
183 B
Rust
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
|
|
}
|