]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-ptr-unique.stderr
Merge commit '1411a98352ba6bee8ba3b0131c9243e5db1e6a2e' into sync_cg_clif-2021-12-31
[rust.git] / src / test / ui / consts / const-ptr-unique.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/const-ptr-unique.rs:8:33
3    |
4 LL |     let x: &'static *mut u32 = &(unique.as_ptr());
5    |            -----------------    ^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
6    |            |
7    |            type annotation requires that borrow lasts for `'static`
8 LL |
9 LL | }
10    | - temporary value is freed at the end of this statement
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0716`.