blob: ea35f46807abb94eb89344861b6f38e475921ed2 [file] [log] [blame]
// aux-build:stability.rs
extern crate stability;
use stability::foo;
fn main() {
let _: &'static u32 = &foo(); //~ ERROR temporary value dropped while borrowed
let _x: &'static u32 = &foo(); //~ ERROR temporary value dropped while borrowed
}