2018-11-24 11:56:24 +00:00
|
|
|
error[E0597]: `a` does not live long enough
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/issue-55511.rs:13:28
|
2018-11-24 11:56:24 +00:00
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | let a = 22;
|
|
|
|
| - binding `a` declared here
|
2018-11-24 11:56:24 +00:00
|
|
|
LL | let b = Some(Cell::new(&a));
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
...
|
|
|
|
LL | <() as Foo<'static>>::C => { }
|
|
|
|
| ----------------------- type annotation requires that `a` is borrowed for `'static`
|
2018-11-24 11:56:24 +00:00
|
|
|
...
|
|
|
|
LL | }
|
2019-04-22 07:40:08 +00:00
|
|
|
| - `a` dropped here while still borrowed
|
2018-11-24 11:56:24 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-11-24 11:56:24 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|