blob: 941ba6bfea78594bebdca5f7f734327602fcc9d3 [file] [log] [blame] [edit]
struct A<const N: usize>;
#[rustfmt::skip]
fn foo<const N: usize>() -> A<{ { N } }> {
//~^ ERROR: generic parameters may not be used in const operations
A::<1>
}
fn main() {}