mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:26:06 +00:00
7 lines
224 B
Rust
7 lines
224 B
Rust
fn main() {
|
|
let x: &'static bool = &(5_i32.is_negative());
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
let y: &'static bool = &(5_i32.is_positive());
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
}
|