rust/tests/ui/const-generics/issues/issue-56445-1.min.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
818 B
Plaintext
Raw Normal View History

2023-05-05 15:42:51 -05:00
error[E0770]: the type of const parameters must not depend on other generic parameters
--> $DIR/issue-56445-1.rs:9:26
|
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`
|
2023-05-05 15:42:51 -05:00
= note: lifetime parameters may not be used in the type of const parameters
2023-02-03 17:21:56 -06:00
error: `&str` is forbidden as the type of a const generic parameter
2021-12-08 15:51:39 -06:00
--> $DIR/issue-56445-1.rs:9:25
|
LL | struct Bug<'a, const S: &'a str>(PhantomData<&'a ()>);
| ^^^^^^^
|
= note: the only supported types are integers, `bool` and `char`
= help: more complex types are supported with `#![feature(adt_const_params)]`
error: aborting due to 2 previous errors
2023-05-05 15:42:51 -05:00
For more information about this error, try `rustc --explain E0770`.