blob: 6c89957de07e3e90b5fedd8e0587158b47ca9366 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0394]: cannot refer to other statics by value, use the address-of operator or a constant instead
--> $DIR/E0394.rs:14:17
|
LL | static B: u32 = A;
| ^ referring to another static by value
|
= note: use the address-of operator or a constant instead
error: aborting due to previous error
For more information about this error, try `rustc --explain E0394`.
|