blob: 173e3dc02cc892ad53c9fb545e7c6134b5cb7988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
error[E0700]: hidden type for `impl Sized` captures lifetime that does not appear in bounds
--> $DIR/feature-gate-lifetime-capture-rules-2024.rs:2:5
|
LL | fn foo(x: &Vec<i32>) -> impl Sized {
| --------- ---------- opaque type defined here
| |
| hidden type `&Vec<i32>` captures the anonymous lifetime defined here
LL | x
| ^
|
help: to declare that `impl Sized` captures `'_`, you can add an explicit `'_` lifetime bound
|
LL | fn foo(x: &Vec<i32>) -> impl Sized + '_ {
| ++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0700`.
|