Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
const-generics
/
lifetime-in-const-param.rs
blob: ce6b52b229f4b5707cfbf2fa592e6bdb37f8a8c6 [
file
] [
log
] [
blame
]
// 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
()
{}