Rollup merge of #86327 - GuillaumeGomez:safe-intrinsics, r=lqd
Don't mark "safe" intrinsics as unsafe A good example of this is [intrinsics::abort](https://doc.rust-lang.org/nightly/core/intrinsics/fn.abort.html). Before:  After:  cc ``@jyn514`` r? ``@lqd``
This commit is contained in:
commit
98d58420c1
2 changed files with 27 additions and 1 deletions
20
src/test/rustdoc/safe-intrinsic.rs
Normal file
20
src/test/rustdoc/safe-intrinsic.rs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#![feature(intrinsics)]
|
||||
#![feature(no_core)]
|
||||
|
||||
#![no_core]
|
||||
#![crate_name = "foo"]
|
||||
|
||||
extern "rust-intrinsic" {
|
||||
// @has 'foo/fn.abort.html'
|
||||
// @has - '//pre[@class="rust fn"]' 'pub extern "rust-intrinsic" fn abort() -> !'
|
||||
pub fn abort() -> !;
|
||||
// @has 'foo/fn.unreachable.html'
|
||||
// @has - '//pre[@class="rust fn"]' 'pub unsafe extern "rust-intrinsic" fn unreachable() -> !'
|
||||
pub fn unreachable() -> !;
|
||||
}
|
||||
|
||||
extern "C" {
|
||||
// @has 'foo/fn.needs_drop.html'
|
||||
// @has - '//pre[@class="rust fn"]' 'pub unsafe extern "C" fn needs_drop() -> !'
|
||||
pub fn needs_drop() -> !;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue