mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
11 lines
409 B
Plaintext
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
|
|
|