mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
406 B
Plaintext
12 lines
406 B
Plaintext
error[E0771]: use of non-static lifetime `'a` in const generic
|
|
--> $DIR/issue-56445-1.rs:9:26
|
|
|
|
|
LL | struct Bug<'a, const S: &'a str>(PhantomData<&'a ()>);
|
|
| ^^
|
|
|
|
|
= note: for more information, see issue #74052 <https://github.com/rust-lang/rust/issues/74052>
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0771`.
|