2017-08-09 22:43:06 +00:00
|
|
|
error: extern items cannot be `const`
|
2024-03-06 20:44:54 +00:00
|
|
|
--> $DIR/extern-const.rs:14:11
|
2017-08-09 22:43:06 +00:00
|
|
|
|
|
2024-04-14 20:23:07 +00:00
|
|
|
LL | const rust_dbg_static_mut: c_int;
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2020-02-15 01:23:10 +00:00
|
|
|
|
|
|
|
|
= note: for more information, visit https://doc.rust-lang.org/std/keyword.extern.html
|
2024-07-06 03:07:46 +00:00
|
|
|
help: try using a static value
|
|
|
|
|
|
|
|
|
LL | static rust_dbg_static_mut: c_int;
|
|
|
|
| ~~~~~~
|
2017-08-09 22:43:06 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-08-09 22:43:06 +00:00
|
|
|
|