summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/user-annotations/type_ascription_static_lifetime.rs
blob: 101b5cfabb3d06419e37559c583179c4b15f5790 (plain)
1
2
3
4
5
6
7
#![allow(warnings)]
#![feature(type_ascription)]

fn main() {
    let x = 22_u32;
    let y: &u32 = &x: &'static u32; //~ ERROR E0597
}