rust/tests/ui/const-generics/outer-lifetime-in-const-generic-default.rs
2023-05-05 21:42:54 +01:00

11 lines
182 B
Rust

struct Foo<
'a,
const N: usize = {
let x: &'a ();
//~^ ERROR generic parameters may not be used in const operations
3
},
>(&'a ());
fn main() {}