2023-05-05 15:42:51 -05:00
|
|
|
error[E0770]: the type of const parameters must not depend on other generic parameters
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/issue-56445-1.rs:9:26
|
2020-07-26 04:54:24 -05:00
|
|
|
|
|
|
|
|
LL | struct Bug<'a, const S: &'a str>(PhantomData<&'a ()>);
|
2023-05-05 15:42:51 -05:00
|
|
|
| ^^ the type must not depend on the parameter `'a`
|
2020-07-26 04:54:24 -05:00
|
|
|
|
|
2023-05-05 15:42:51 -05:00
|
|
|
= note: lifetime parameters may not be used in the type of const parameters
|
2020-07-26 04:54:24 -05:00
|
|
|
|
2021-08-27 11:04:57 -05:00
|
|
|
error: aborting due to previous error
|
2020-07-26 04:54:24 -05:00
|
|
|
|
2023-05-05 15:42:51 -05:00
|
|
|
For more information about this error, try `rustc --explain E0770`.
|