2021-01-03 14:46:19 +00:00
|
|
|
error[E0492]: constants cannot refer to interior mutable data
|
2020-12-30 17:20:38 +00:00
|
|
|
--> $DIR/issue-17718-const-borrow.rs:4:39
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | const B: &'static UnsafeCell<usize> = &A;
|
2021-01-03 14:46:19 +00:00
|
|
|
| ^^ this borrow of an interior mutable value may end up in the final value
|
2018-07-15 14:11:54 -07:00
|
|
|
|
2021-01-03 14:46:19 +00:00
|
|
|
error[E0492]: constants cannot refer to interior mutable data
|
2020-12-30 17:20:38 +00:00
|
|
|
--> $DIR/issue-17718-const-borrow.rs:9:39
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | const E: &'static UnsafeCell<usize> = &D.a;
|
2021-01-03 14:46:19 +00:00
|
|
|
| ^^^^ this borrow of an interior mutable value may end up in the final value
|
2018-07-15 14:11:54 -07:00
|
|
|
|
2021-01-03 14:46:19 +00:00
|
|
|
error[E0492]: constants cannot refer to interior mutable data
|
2020-12-30 17:20:38 +00:00
|
|
|
--> $DIR/issue-17718-const-borrow.rs:11:23
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | const F: &'static C = &D;
|
2021-01-03 14:46:19 +00:00
|
|
|
| ^^ this borrow of an interior mutable value may end up in the final value
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0492`.
|