blob: 101b5cfabb3d06419e37559c583179c4b15f5790 [file] [log] [blame]
#![allow(warnings)]
#![feature(type_ascription)]
fn main() {
let x = 22_u32;
let y: &u32 = &x: &'static u32; //~ ERROR E0597
}