mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-07 01:57:19 +00:00
14 lines
736 B
Plaintext
14 lines
736 B
Plaintext
error[E0492]: interior mutable shared borrows of temporaries that have their lifetime extended until the end of the program are not allowed
|
|
--> $DIR/qualif_overwrite_2.rs:8:5
|
|
|
|
|
LL | &{a.0}
|
|
| ^^^^^^ this borrow of an interior mutable value refers to such a temporary
|
|
|
|
|
= note: Temporaries in constants and statics can have their lifetime extended until the end of the program
|
|
= note: To avoid accidentally creating global mutable state, such temporaries must be immutable
|
|
= help: If you really want global mutable state, try replacing the temporary by an interior mutable `static` or a `static mut`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0492`.
|