summaryrefslogtreecommitdiffstats
path: root/tests/ui/statics/issue-44373.rs
blob: 0d011d096bd1f210d6ff2f75a43a1c56951dfa0c (plain)
1
2
3
4
5
static FOO: u32 = 50;

fn main() {
    let _val: &'static [&'static u32] = &[&FOO]; //~ ERROR temporary value dropped while borrowed
}