// [full] check-pass // revisions: full min // regression test for #78180 #![cfg_attr(full, feature(generic_const_exprs))] #![cfg_attr(full, allow(incomplete_features))] #![allow(dead_code)] fn test() {} fn wow<'a>() -> &'a () { test::<{ let _: &'a (); //[min]~ ERROR a non-static lifetime 3 }>(); &() } fn main() {}