rust/tests/ui/consts/issue-17718-const-borrow.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
911 B
Plaintext
Raw Normal View History

error[E0492]: constants cannot refer to interior mutable data
--> $DIR/issue-17718-const-borrow.rs:4:39
2018-07-15 14:11:54 -07:00
|
LL | const B: &'static UnsafeCell<usize> = &A;
| ^^ this borrow of an interior mutable value may end up in the final value
2018-07-15 14:11:54 -07:00
error[E0492]: constants cannot refer to interior mutable data
--> $DIR/issue-17718-const-borrow.rs:9:39
2018-07-15 14:11:54 -07:00
|
LL | const E: &'static UnsafeCell<usize> = &D.a;
| ^^^^ this borrow of an interior mutable value may end up in the final value
2018-07-15 14:11:54 -07:00
error[E0492]: constants cannot refer to interior mutable data
--> $DIR/issue-17718-const-borrow.rs:11:23
2018-07-15 14:11:54 -07:00
|
LL | const F: &'static C = &D;
| ^^ 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`.