summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-eval/dont_promote_unstable_const_fn_cross_crate.rs
blob: ea35f46807abb94eb89344861b6f38e475921ed2 (plain)
1
2
3
4
5
6
7
8
9
10
// 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
}