blob: 3018439afa7170e39bfccecd96d0698a7b0eb29d [file] [log] [blame]
struct Foo<
'a,
const N: usize = {
let x: &'a ();
//~^ ERROR use of non-static lifetime `'a` in const generic
3
},
>(&'a ());
fn main() {}