2014-01-15 19:39:08 +00:00
|
|
|
// Test that the borrow checker prevents pointers to temporaries
|
|
|
|
// with statement lifetimes from escaping.
|
|
|
|
|
|
|
|
use std::ops::Drop;
|
|
|
|
|
|
|
|
static mut FLAGS: u64 = 0;
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
struct StackBox<T> { f: T }
|
2014-01-15 19:39:08 +00:00
|
|
|
struct AddFlags { bits: u64 }
|
|
|
|
|
|
|
|
fn AddFlags(bits: u64) -> AddFlags {
|
|
|
|
AddFlags { bits: bits }
|
|
|
|
}
|
|
|
|
|
2014-07-18 04:44:59 +00:00
|
|
|
fn arg(x: &AddFlags) -> &AddFlags {
|
2014-01-15 19:39:08 +00:00
|
|
|
x
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AddFlags {
|
2014-07-18 04:44:59 +00:00
|
|
|
fn get(&self) -> &AddFlags {
|
2014-01-15 19:39:08 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2019-04-22 07:40:08 +00:00
|
|
|
let x1 = arg(&AddFlags(1)); //~ ERROR temporary value dropped while borrowed
|
|
|
|
let x2 = AddFlags(1).get(); //~ ERROR temporary value dropped while borrowed
|
|
|
|
let x3 = &*arg(&AddFlags(1)); //~ ERROR temporary value dropped while borrowed
|
|
|
|
let ref x4 = *arg(&AddFlags(1)); //~ ERROR temporary value dropped while borrowed
|
|
|
|
let &ref x5 = arg(&AddFlags(1)); //~ ERROR temporary value dropped while borrowed
|
|
|
|
let x6 = AddFlags(1).get(); //~ ERROR temporary value dropped while borrowed
|
|
|
|
let StackBox { f: x7 } = StackBox { f: AddFlags(1).get() };
|
|
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
|
|
(x1, x2, x3, x4, x5, x6, x7);
|
2014-01-15 19:39:08 +00:00
|
|
|
}
|