blob: be90dbb213eef6ddce565f399c8769f11304d81b (
plain)
1
2
3
4
5
6
7
8
9
|
// https://github.com/rust-lang/rust/issues/113462
struct S2<'b>(&'b ());
struct S<'a, const N: S2>(&'a ());
//~^ ERROR missing lifetime specifier [E0106]
//~| ERROR `S2<'_>` is forbidden as the type of a const generic parameter
fn main() {}
|