rust/src/test/ui/lint/lint-unexported-no-mangle.stderr

29 lines
943 B
Plaintext
Raw Normal View History

warning: lint `private_no_mangle_fns` has been removed: `no longer a warning, `#[no_mangle]` functions always exported`
2018-08-08 07:28:26 -05:00
|
= note: requested on the command line with `-F private_no_mangle_fns`
warning: lint `private_no_mangle_statics` has been removed: `no longer a warning, `#[no_mangle]` statics always exported`
2018-08-08 07:28:26 -05:00
|
= note: requested on the command line with `-F private_no_mangle_statics`
2018-08-08 07:28:26 -05:00
error: const items should never be `#[no_mangle]`
2018-12-25 09:56:47 -06:00
--> $DIR/lint-unexported-no-mangle.rs:9:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | const FOO: u64 = 1;
2018-08-08 07:28:26 -05:00
| -----^^^^^^^^^^^^^^
| |
| help: try a static value: `pub static`
|
= note: requested on the command line with `-F no-mangle-const-items`
error: const items should never be `#[no_mangle]`
2018-12-25 09:56:47 -06:00
--> $DIR/lint-unexported-no-mangle.rs:12:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub const PUB_FOO: u64 = 1;
2018-08-08 07:28:26 -05:00
| ---------^^^^^^^^^^^^^^^^^^
| |
| help: try a static value: `pub static`
error: aborting due to 2 previous errors
2018-08-08 07:28:26 -05:00