mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
9 lines
316 B
Plaintext
9 lines
316 B
Plaintext
error: `impl Trait` can only mention lifetimes from an fn or impl
|
|
--> $DIR/universal_wrong_hrtb.rs:5:73
|
|
|
|
|
LL | fn test_argument_position(x: impl for<'a> Trait<'a, Assoc = impl Copy + 'a>) {}
|
|
| -- lifetime declared here ^^
|
|
|
|
error: aborting due to previous error
|
|
|