Add test for safe intrinsics

This commit is contained in:
Guillaume Gomez 2021-06-15 16:08:18 +02:00
parent 91f491ecf2
commit f6830403b3

View 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() -> !;
}