blob: 6267462c518b0f6a7fd3da40b342c1b461d82242 [file] [log] [blame] [edit]
//@ [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<const N: usize>() {}
fn wow<'a>() -> &'a () {
test::<{
let _: &'a (); //[min]~ ERROR generic parameters may not be used in const operations
3
}>();
&()
}
fn main() {}