rust/tests/ui/intrinsics/safe-intrinsic-mismatch.stock.stderr

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

48 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-09-27 05:22:07 +00:00
error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `size_of`
--> $DIR/safe-intrinsic-mismatch.rs:11:5
2022-09-27 05:22:07 +00:00
|
LL | fn size_of<T>() -> usize;
| ^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-27 05:22:07 +00:00
error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `size_of`
--> $DIR/safe-intrinsic-mismatch.rs:11:5
|
LL | fn size_of<T>() -> usize;
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `assume`
--> $DIR/safe-intrinsic-mismatch.rs:16:1
|
LL | const fn assume(_b: bool) {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0308]: intrinsic has wrong type
--> $DIR/safe-intrinsic-mismatch.rs:16:16
|
LL | const fn assume(_b: bool) {}
2024-05-17 17:17:48 +00:00
| ^ expected unsafe fn, found safe fn
|
= note: expected signature `unsafe fn(_)`
found signature `fn(_)`
2024-02-02 15:07:10 +00:00
error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `const_deallocate`
--> $DIR/safe-intrinsic-mismatch.rs:20:1
2024-02-02 15:07:10 +00:00
|
LL | const fn const_deallocate(_ptr: *mut u8, _size: usize, _align: usize) {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0308]: intrinsic has wrong type
--> $DIR/safe-intrinsic-mismatch.rs:20:26
2024-02-02 15:07:10 +00:00
|
LL | const fn const_deallocate(_ptr: *mut u8, _size: usize, _align: usize) {}
2024-05-17 17:17:48 +00:00
| ^ expected unsafe fn, found safe fn
2024-02-02 15:07:10 +00:00
|
= note: expected signature `unsafe fn(_, _, _)`
found signature `fn(_, _, _)`
2024-06-21 11:57:24 +00:00
error: aborting due to 6 previous errors
2022-09-27 05:22:07 +00:00
2024-06-21 11:57:24 +00:00
For more information about this error, try `rustc --explain E0308`.