1
Fork 0
rust/src/test/ui/write-to-static-mut-in-static.stderr

15 lines
470 B
Text
Raw Normal View History

error: cannot mutate statics in the initializer of another static
2018-08-08 14:28:26 +02:00
--> $DIR/write-to-static-mut-in-static.rs:14:33
|
LL | pub static mut B: () = unsafe { A = 1; };
| ^^^^^
error: cannot mutate statics in the initializer of another static
2018-08-08 14:28:26 +02:00
--> $DIR/write-to-static-mut-in-static.rs:17:34
|
LL | pub static mut C: u32 = unsafe { C = 1; 0 };
| ^^^^^
error: aborting due to 2 previous errors