rust/tests/ui/mir/field-projection-mutating-context2.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

11 lines
409 B
Plaintext

error: lifetime may not live long enough
--> $DIR/field-projection-mutating-context2.rs:8:25
|
LL | fn foo<'a>(mut x: Foo<fn(&'a str)>, string: &'a str) {
| -- lifetime `'a` defined here
LL | let Foo(ref mut y): Foo<fn(&'static str)> = x;
| ^^^^^^^^^^^^^^^^^^^^^ type annotation requires that `'a` must outlive `'static`
error: aborting due to 1 previous error