]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-var-type-out-of-scope.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / regions / regions-var-type-out-of-scope.stderr
1 error[E0597]: borrowed value does not live long enough
2   --> $DIR/regions-var-type-out-of-scope.rs:9:14
3    |
4 LL |         x = &id(3); //~ ERROR borrowed value does not live long enough
5    |              ^^^^^- temporary value dropped here while still borrowed
6    |              |
7    |              temporary value does not live long enough
8 ...
9 LL | }
10    | - temporary value needs to live until here
11    |
12    = note: consider using a `let` binding to increase its lifetime
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0597`.