2023-02-03 19:59:17 -06:00
|
|
|
error[E0658]: only lifetime parameters can be used in this context
|
2022-06-09 14:30:18 -05:00
|
|
|
--> $DIR/hrtb-wrong-kind.rs:1:18
|
|
|
|
|
|
|
|
|
LL | fn a() where for<T> T: Copy {}
|
|
|
|
| ^
|
2023-02-03 19:59:17 -06:00
|
|
|
|
|
2023-02-17 14:22:12 -06:00
|
|
|
= note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information
|
2023-02-03 19:59:17 -06:00
|
|
|
= help: add `#![feature(non_lifetime_binders)]` to the crate attributes to enable
|
2022-06-09 14:30:18 -05:00
|
|
|
|
2023-02-03 19:59:17 -06:00
|
|
|
error[E0658]: only lifetime parameters can be used in this context
|
2022-06-09 14:30:18 -05:00
|
|
|
--> $DIR/hrtb-wrong-kind.rs:4:24
|
|
|
|
|
|
|
|
|
LL | fn b() where for<const C: usize> [(); C]: Copy {}
|
|
|
|
| ^
|
2023-02-03 19:59:17 -06:00
|
|
|
|
|
2023-02-17 14:22:12 -06:00
|
|
|
= note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information
|
2023-02-03 19:59:17 -06:00
|
|
|
= help: add `#![feature(non_lifetime_binders)]` to the crate attributes to enable
|
2022-06-09 14:30:18 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2023-02-03 19:59:17 -06:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|