mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
15 lines
389 B
Plaintext
15 lines
389 B
Plaintext
error: only lifetime parameters can be used in this context
|
|
--> $DIR/hrtb-wrong-kind.rs:1:18
|
|
|
|
|
LL | fn a() where for<T> T: Copy {}
|
|
| ^
|
|
|
|
error: only lifetime parameters can be used in this context
|
|
--> $DIR/hrtb-wrong-kind.rs:4:24
|
|
|
|
|
LL | fn b() where for<const C: usize> [(); C]: Copy {}
|
|
| ^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|