2018-09-01 15:05:55 +02:00
|
|
|
fn main() {
|
2019-04-22 08:40:08 +01:00
|
|
|
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
|
2018-09-01 15:05:55 +02:00
|
|
|
}
|