blob: 0e88ea77d1ca0e8abe4174b1d794362117389705 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0080]: writing to ALLOC0 which is read-only
--> $DIR/ptr_made_global_mutated.rs:10:5
|
LL | *(ptr as *mut u8) = 2;
| ^^^^^^^^^^^^^^^^^^^^^ evaluation of `A` failed here
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0080`.
|