mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +00:00
9 lines
171 B
Rust
9 lines
171 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]
|
||
|
|
||
|
fn main() {}
|