summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/mir_check_cast_unsize.rs
blob: f6c100ab6d44ff5d421c2d8717236ba02d048a27 (plain)
1
2
3
4
5
6
7
8
9
10
#![allow(dead_code)]

use std::fmt::Debug;

fn bar<'a>(x: &'a u32) -> &'static dyn Debug {
    x
    //~^ ERROR lifetime may not live long enough
}

fn main() {}