]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/user-annotations/type_ascription_static_lifetime.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / nll / user-annotations / type_ascription_static_lifetime.rs
1 #![allow(warnings)]
2 #![feature(type_ascription)]
3
4 fn main() {
5 let x = 22_u32;
6 let y: &u32 = type_ascribe!(&x, &'static u32); //~ ERROR E0597
7 }