]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-thread-local-static-borrow-outlives-fn.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / borrowck-thread-local-static-borrow-outlives-fn.stderr
1 error[E0712]: thread-local variable borrowed past end of function
2   --> $DIR/borrowck-thread-local-static-borrow-outlives-fn.rs:8:20
3    |
4 LL |      assert_static(&FOO);
5    |                    ^^^^ thread-local variables cannot be borrowed beyond the end of the function
6 LL | }
7    | - end of enclosing function is here
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0712`.