mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:09:20 +00:00
7 lines
225 B
Rust
7 lines
225 B
Rust
fn main() {
|
|
let x: &'static i32 = &(5_i32.rotate_left(3));
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
let y: &'static i32 = &(5_i32.rotate_right(3));
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
}
|