2018-02-07 19:35:35 -08:00
|
|
|
error[E0492]: cannot borrow a constant which may contain interior mutability, create a static instead
|
|
|
|
--> $DIR/E0492.rs:14:34
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | static B: &'static AtomicUsize = &A; //~ ERROR E0492
|
2018-02-07 19:35:35 -08:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
If you want more information on this error, try using "rustc --explain E0492"
|