2019-04-22 02:40:08 -05:00
|
|
|
error[E0712]: thread-local variable borrowed past end of function
|
|
|
|
--> $DIR/issue-17954.rs:7:13
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | let a = &FOO;
|
2019-04-22 02:40:08 -05:00
|
|
|
| ^^^^ thread-local variables cannot be borrowed beyond the end of the function
|
2018-07-15 16:11:54 -05:00
|
|
|
...
|
|
|
|
LL | }
|
2023-05-21 03:31:17 -05:00
|
|
|
| - end of enclosing function is here
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
For more information about this error, try `rustc --explain E0712`.
|