2017-08-10 01:43:06 +03:00
|
|
|
error: extern items cannot be `const`
|
2024-03-06 12:44:54 -08:00
|
|
|
--> $DIR/extern-const.rs:14:11
|
2017-08-10 01:43:06 +03:00
|
|
|
|
|
2024-04-14 16:23:07 -04:00
|
|
|
LL | const rust_dbg_static_mut: c_int;
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2020-02-15 02:23:10 +01: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-10 01:43:06 +03:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-08-10 01:43:06 +03:00
|
|
|
|