rust/tests/ui/lint/clashing-extern-fn.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

231 lines
10 KiB
Plaintext
Raw Normal View History

2023-07-15 05:41:33 -05:00
warning: `extern` block uses type `Option<TransparentNoNiche>`, which is not FFI-safe
--> $DIR/clashing-extern-fn.rs:433:55
|
LL | fn hidden_niche_transparent_no_niche() -> Option<TransparentNoNiche>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ not FFI-safe
|
= help: consider adding a `#[repr(C)]`, `#[repr(transparent)]`, or integer `#[repr(...)]` attribute to this enum
= note: enum has no representation hint
= note: `#[warn(improper_ctypes)]` on by default
warning: `extern` block uses type `Option<UnsafeCell<NonZeroUsize>>`, which is not FFI-safe
--> $DIR/clashing-extern-fn.rs:437:46
|
LL | fn hidden_niche_unsafe_cell() -> Option<UnsafeCell<NonZeroUsize>>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not FFI-safe
|
= help: consider adding a `#[repr(C)]`, `#[repr(transparent)]`, or integer `#[repr(...)]` attribute to this enum
= note: enum has no representation hint
2020-04-05 09:01:24 -05:00
warning: `clash` redeclared with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:14:13
2020-04-05 09:01:24 -05:00
|
LL | fn clash(x: u8);
2023-07-15 05:41:33 -05:00
| --------------- `clash` previously declared here
2020-04-05 09:01:24 -05:00
...
LL | fn clash(x: u64);
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
2020-04-05 09:01:24 -05:00
|
2022-09-18 10:55:36 -05:00
= note: expected `unsafe extern "C" fn(u8)`
found `unsafe extern "C" fn(u64)`
2020-04-05 09:01:24 -05:00
note: the lint level is defined here
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:4:9
2020-04-05 09:01:24 -05:00
|
LL | #![warn(clashing_extern_declarations)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-04-05 09:01:24 -05:00
warning: `extern_link_name` redeclared with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:52:9
2020-04-05 09:01:24 -05:00
|
2023-07-15 05:41:33 -05:00
LL | #[link_name = "extern_link_name"]
| --------------------------------- `extern_link_name` previously declared here
2020-04-05 09:01:24 -05:00
...
2023-07-15 05:41:33 -05:00
LL | fn extern_link_name(x: u32);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
2020-04-05 09:01:24 -05:00
|
= note: expected `unsafe extern "C" fn(i16)`
found `unsafe extern "C" fn(u32)`
2020-04-05 09:01:24 -05:00
warning: `some_other_extern_link_name` redeclares `some_other_new_name` with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:55:9
2020-04-05 09:01:24 -05:00
|
2023-07-15 05:41:33 -05:00
LL | fn some_other_new_name(x: i16);
| ------------------------------ `some_other_new_name` previously declared here
2020-04-05 09:01:24 -05:00
...
2023-07-15 05:41:33 -05:00
LL | #[link_name = "some_other_new_name"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
2020-04-05 09:01:24 -05:00
|
= note: expected `unsafe extern "C" fn(i16)`
found `unsafe extern "C" fn(u32)`
2020-04-05 09:01:24 -05:00
warning: `other_both_names_different` redeclares `link_name_same` with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:59:9
2020-04-05 09:01:24 -05:00
|
2023-07-15 05:41:33 -05:00
LL | #[link_name = "link_name_same"]
| ------------------------------- `link_name_same` previously declared here
2020-04-05 09:01:24 -05:00
...
2023-07-15 05:41:33 -05:00
LL | #[link_name = "link_name_same"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
2020-04-05 09:01:24 -05:00
|
= note: expected `unsafe extern "C" fn(i16)`
found `unsafe extern "C" fn(u32)`
2020-04-05 09:01:24 -05:00
warning: `different_mod` redeclared with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:72:9
2020-04-05 09:01:24 -05:00
|
LL | fn different_mod(x: u8);
2023-07-15 05:41:33 -05:00
| ----------------------- `different_mod` previously declared here
2020-04-05 09:01:24 -05:00
...
LL | fn different_mod(x: u64);
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
2020-04-05 09:01:24 -05:00
|
= note: expected `unsafe extern "C" fn(u8)`
found `unsafe extern "C" fn(u64)`
2020-04-05 09:01:24 -05:00
warning: `variadic_decl` redeclared with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:82:9
2020-04-05 09:01:24 -05:00
|
LL | fn variadic_decl(x: u8, ...);
2023-07-15 05:41:33 -05:00
| ---------------------------- `variadic_decl` previously declared here
2020-04-05 09:01:24 -05:00
...
LL | fn variadic_decl(x: u8);
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
2020-04-05 09:01:24 -05:00
|
= note: expected `unsafe extern "C" fn(u8, ...)`
found `unsafe extern "C" fn(u8)`
2020-04-05 09:01:24 -05:00
warning: `weigh_banana` redeclared with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:142:13
2020-04-05 09:01:24 -05:00
|
LL | fn weigh_banana(count: *const Banana) -> u64;
2023-07-15 05:41:33 -05:00
| -------------------------------------------- `weigh_banana` previously declared here
2020-04-05 09:01:24 -05:00
...
LL | fn weigh_banana(count: *const Banana) -> u64;
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
2020-04-05 09:01:24 -05:00
|
= note: expected `unsafe extern "C" fn(*const one::Banana) -> u64`
found `unsafe extern "C" fn(*const three::Banana) -> u64`
2020-04-05 09:01:24 -05:00
warning: `draw_point` redeclared with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:171:13
2020-04-05 09:01:24 -05:00
|
LL | fn draw_point(p: Point);
2023-07-15 05:41:33 -05:00
| ----------------------- `draw_point` previously declared here
2020-04-05 09:01:24 -05:00
...
LL | fn draw_point(p: Point);
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
2020-04-05 09:01:24 -05:00
|
= note: expected `unsafe extern "C" fn(sameish_members::a::Point)`
found `unsafe extern "C" fn(sameish_members::b::Point)`
2020-04-05 09:01:24 -05:00
warning: `origin` redeclared with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:197:13
|
LL | fn origin() -> Point3;
2023-07-15 05:41:33 -05:00
| --------------------- `origin` previously declared here
...
LL | fn origin() -> Point3;
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
|
= note: expected `unsafe extern "C" fn() -> same_sized_members_clash::a::Point3`
found `unsafe extern "C" fn() -> same_sized_members_clash::b::Point3`
warning: `transparent_incorrect` redeclared with a different signature
2022-07-07 05:46:22 -05:00
--> $DIR/clashing-extern-fn.rs:220:13
|
LL | fn transparent_incorrect() -> T;
2023-07-15 05:41:33 -05:00
| ------------------------------- `transparent_incorrect` previously declared here
...
LL | fn transparent_incorrect() -> isize;
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
|
= note: expected `unsafe extern "C" fn() -> T`
found `unsafe extern "C" fn() -> isize`
warning: `missing_return_type` redeclared with a different signature
--> $DIR/clashing-extern-fn.rs:259:13
|
LL | fn missing_return_type() -> usize;
2023-07-15 05:41:33 -05:00
| --------------------------------- `missing_return_type` previously declared here
...
LL | fn missing_return_type();
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
|
= note: expected `unsafe extern "C" fn() -> usize`
found `unsafe extern "C" fn()`
warning: `non_zero_usize` redeclared with a different signature
--> $DIR/clashing-extern-fn.rs:277:13
|
LL | fn non_zero_usize() -> core::num::NonZeroUsize;
2023-07-15 05:41:33 -05:00
| ---------------------------------------------- `non_zero_usize` previously declared here
...
LL | fn non_zero_usize() -> usize;
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
|
= note: expected `unsafe extern "C" fn() -> NonZeroUsize`
found `unsafe extern "C" fn() -> usize`
warning: `non_null_ptr` redeclared with a different signature
--> $DIR/clashing-extern-fn.rs:279:13
|
LL | fn non_null_ptr() -> core::ptr::NonNull<usize>;
2023-07-15 05:41:33 -05:00
| ---------------------------------------------- `non_null_ptr` previously declared here
...
LL | fn non_null_ptr() -> *const usize;
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
|
= note: expected `unsafe extern "C" fn() -> NonNull<usize>`
found `unsafe extern "C" fn() -> *const usize`
warning: `option_non_zero_usize_incorrect` redeclared with a different signature
--> $DIR/clashing-extern-fn.rs:377:13
|
LL | fn option_non_zero_usize_incorrect() -> usize;
2023-07-15 05:41:33 -05:00
| --------------------------------------------- `option_non_zero_usize_incorrect` previously declared here
...
LL | fn option_non_zero_usize_incorrect() -> isize;
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
|
= note: expected `unsafe extern "C" fn() -> usize`
found `unsafe extern "C" fn() -> isize`
warning: `option_non_null_ptr_incorrect` redeclared with a different signature
--> $DIR/clashing-extern-fn.rs:379:13
|
LL | fn option_non_null_ptr_incorrect() -> *const usize;
2023-07-15 05:41:33 -05:00
| -------------------------------------------------- `option_non_null_ptr_incorrect` previously declared here
...
LL | fn option_non_null_ptr_incorrect() -> *const isize;
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
|
= note: expected `unsafe extern "C" fn() -> *const usize`
found `unsafe extern "C" fn() -> *const isize`
warning: `hidden_niche_transparent_no_niche` redeclared with a different signature
--> $DIR/clashing-extern-fn.rs:433:13
|
LL | fn hidden_niche_transparent_no_niche() -> usize;
2023-07-15 05:41:33 -05:00
| ----------------------------------------------- `hidden_niche_transparent_no_niche` previously declared here
...
LL | fn hidden_niche_transparent_no_niche() -> Option<TransparentNoNiche>;
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
|
= note: expected `unsafe extern "C" fn() -> usize`
found `unsafe extern "C" fn() -> Option<TransparentNoNiche>`
warning: `hidden_niche_unsafe_cell` redeclared with a different signature
--> $DIR/clashing-extern-fn.rs:437:13
|
LL | fn hidden_niche_unsafe_cell() -> usize;
2023-07-15 05:41:33 -05:00
| -------------------------------------- `hidden_niche_unsafe_cell` previously declared here
...
LL | fn hidden_niche_unsafe_cell() -> Option<UnsafeCell<NonZeroUsize>>;
2023-07-15 05:41:33 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
|
= note: expected `unsafe extern "C" fn() -> usize`
found `unsafe extern "C" fn() -> Option<UnsafeCell<NonZeroUsize>>`
warning: 19 warnings emitted
2020-04-05 09:01:24 -05:00