blob: b870aca640a0aea7abe6ca8ba8da834961415a3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
warning: skipping const checks
--> $DIR/mutable_references.rs:30:10
|
LL | *MEH.x.get() = 99;
| ^^^^^
warning: skipping const checks
--> $DIR/mutable_references.rs:30:9
|
LL | *MEH.x.get() = 99;
| ^^^^^^^^^^^^^^^^^
warning: skipping const checks
--> $DIR/mutable_references.rs:33:5
|
LL | *OH_YES = 99;
| ^^^^^^^^^^^^
error[E0594]: cannot assign to `*OH_YES`, as `OH_YES` is an immutable static item
--> $DIR/mutable_references.rs:33:5
|
LL | *OH_YES = 99;
| ^^^^^^^^^^^^ cannot assign
error: aborting due to previous error
|