mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
83 lines
2.8 KiB
Text
83 lines
2.8 KiB
Text
error: `#[no_mangle]` set on a function with the default (`Rust`) ABI
|
|
--> tests/ui/no_mangle_with_rust_abi.rs:6:1
|
|
|
|
|
LL | fn rust_abi_fn_one(arg_one: u32, arg_two: usize) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::no-mangle-with-rust-abi` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::no_mangle_with_rust_abi)]`
|
|
help: set an ABI
|
|
|
|
|
LL | extern "C" fn rust_abi_fn_one(arg_one: u32, arg_two: usize) {}
|
|
| ++++++++++
|
|
help: or explicitly set the default
|
|
|
|
|
LL | extern "Rust" fn rust_abi_fn_one(arg_one: u32, arg_two: usize) {}
|
|
| +++++++++++++
|
|
|
|
error: `#[no_mangle]` set on a function with the default (`Rust`) ABI
|
|
--> tests/ui/no_mangle_with_rust_abi.rs:11:1
|
|
|
|
|
LL | pub fn rust_abi_fn_two(arg_one: u32, arg_two: usize) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: set an ABI
|
|
|
|
|
LL | pub extern "C" fn rust_abi_fn_two(arg_one: u32, arg_two: usize) {}
|
|
| ++++++++++
|
|
help: or explicitly set the default
|
|
|
|
|
LL | pub extern "Rust" fn rust_abi_fn_two(arg_one: u32, arg_two: usize) {}
|
|
| +++++++++++++
|
|
|
|
error: `#[no_mangle]` set on a function with the default (`Rust`) ABI
|
|
--> tests/ui/no_mangle_with_rust_abi.rs:17:1
|
|
|
|
|
LL | pub unsafe fn rust_abi_fn_three(arg_one: u32, arg_two: usize) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: set an ABI
|
|
|
|
|
LL | pub unsafe extern "C" fn rust_abi_fn_three(arg_one: u32, arg_two: usize) {}
|
|
| ++++++++++
|
|
help: or explicitly set the default
|
|
|
|
|
LL | pub unsafe extern "Rust" fn rust_abi_fn_three(arg_one: u32, arg_two: usize) {}
|
|
| +++++++++++++
|
|
|
|
error: `#[no_mangle]` set on a function with the default (`Rust`) ABI
|
|
--> tests/ui/no_mangle_with_rust_abi.rs:23:1
|
|
|
|
|
LL | unsafe fn rust_abi_fn_four(arg_one: u32, arg_two: usize) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: set an ABI
|
|
|
|
|
LL | unsafe extern "C" fn rust_abi_fn_four(arg_one: u32, arg_two: usize) {}
|
|
| ++++++++++
|
|
help: or explicitly set the default
|
|
|
|
|
LL | unsafe extern "Rust" fn rust_abi_fn_four(arg_one: u32, arg_two: usize) {}
|
|
| +++++++++++++
|
|
|
|
error: `#[no_mangle]` set on a function with the default (`Rust`) ABI
|
|
--> tests/ui/no_mangle_with_rust_abi.rs:27:1
|
|
|
|
|
LL | / fn rust_abi_multiline_function_really_long_name_to_overflow_args_to_multiple_lines(
|
|
LL | |
|
|
LL | | arg_one: u32,
|
|
LL | | arg_two: usize,
|
|
LL | | ) -> u32 {
|
|
| |________^
|
|
|
|
|
help: set an ABI
|
|
|
|
|
LL | extern "C" fn rust_abi_multiline_function_really_long_name_to_overflow_args_to_multiple_lines(
|
|
| ++++++++++
|
|
help: or explicitly set the default
|
|
|
|
|
LL | extern "Rust" fn rust_abi_multiline_function_really_long_name_to_overflow_args_to_multiple_lines(
|
|
| +++++++++++++
|
|
|
|
error: aborting due to 5 previous errors
|
|
|