2021-01-17 19:23:25 +00:00
|
|
|
warning: lint `private_no_mangle_fns` has been removed: no longer a warning, `#[no_mangle]` functions always exported
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-09-21 22:58:11 +00:00
|
|
|
= note: requested on the command line with `-F private_no_mangle_fns`
|
2023-08-28 19:28:51 +00:00
|
|
|
= note: `#[warn(renamed_and_removed_lints)]` on by default
|
2018-09-21 22:58:11 +00:00
|
|
|
|
2021-01-17 19:23:25 +00:00
|
|
|
warning: lint `private_no_mangle_statics` has been removed: no longer a warning, `#[no_mangle]` statics always exported
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-09-21 22:58:11 +00:00
|
|
|
= note: requested on the command line with `-F private_no_mangle_statics`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2021-01-17 19:23:25 +00:00
|
|
|
warning: lint `private_no_mangle_fns` has been removed: no longer a warning, `#[no_mangle]` functions always exported
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
|
= note: requested on the command line with `-F private_no_mangle_fns`
|
2023-10-04 18:34:50 +00:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2020-01-08 17:02:10 +00:00
|
|
|
|
2021-01-17 19:23:25 +00:00
|
|
|
warning: lint `private_no_mangle_statics` has been removed: no longer a warning, `#[no_mangle]` statics always exported
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
|
= note: requested on the command line with `-F private_no_mangle_statics`
|
2023-10-04 18:34:50 +00:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2020-01-08 17:02:10 +00:00
|
|
|
|
2021-01-17 19:23:25 +00:00
|
|
|
warning: lint `private_no_mangle_fns` has been removed: no longer a warning, `#[no_mangle]` functions always exported
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
|
= note: requested on the command line with `-F private_no_mangle_fns`
|
2023-10-04 18:34:50 +00:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2020-01-08 17:02:10 +00:00
|
|
|
|
2021-01-17 19:23:25 +00:00
|
|
|
warning: lint `private_no_mangle_statics` has been removed: no longer a warning, `#[no_mangle]` statics always exported
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
|
= note: requested on the command line with `-F private_no_mangle_statics`
|
2023-10-04 18:34:50 +00:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2020-01-08 17:02:10 +00:00
|
|
|
|
2019-07-18 22:05:23 +00:00
|
|
|
error: const items should never be `#[no_mangle]`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/lint-unexported-no-mangle.rs:9:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | const FOO: u64 = 1;
|
2018-08-08 12:28:26 +00:00
|
|
|
| -----^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| help: try a static value: `pub static`
|
|
|
|
|
|
|
|
|
= note: requested on the command line with `-F no-mangle-const-items`
|
|
|
|
|
2019-07-18 22:05:23 +00:00
|
|
|
error: const items should never be `#[no_mangle]`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/lint-unexported-no-mangle.rs:12:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | pub const PUB_FOO: u64 = 1;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ---------^^^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| help: try a static value: `pub static`
|
|
|
|
|
2024-07-04 09:55:42 +00:00
|
|
|
error: aborting due to 2 previous errors; 6 warnings emitted
|
2018-08-08 12:28:26 +00:00
|
|
|
|