rust/tests/ui/consts/const-eval/dont_promote_unstable_const...

11 lines
255 B
Rust

//@ 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
}