mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
10 lines
245 B
Rust
10 lines
245 B
Rust
|
// 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() {}
|