2021-06-15 09:08:18 -05:00
|
|
|
#![feature(intrinsics)]
|
|
|
|
#![feature(no_core)]
|
2022-08-17 06:43:59 -05:00
|
|
|
#![feature(rustc_attrs)]
|
2021-06-15 09:08:18 -05:00
|
|
|
|
|
|
|
#![no_core]
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
extern "rust-intrinsic" {
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.abort.html'
|
|
|
|
//@ has - '//pre[@class="rust item-decl"]' 'pub extern "rust-intrinsic" fn abort() -> !'
|
2022-08-17 06:43:59 -05:00
|
|
|
#[rustc_safe_intrinsic]
|
2021-06-15 09:08:18 -05:00
|
|
|
pub fn abort() -> !;
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.unreachable.html'
|
|
|
|
//@ has - '//pre[@class="rust item-decl"]' 'pub unsafe extern "rust-intrinsic" fn unreachable() -> !'
|
2021-06-15 09:08:18 -05:00
|
|
|
pub fn unreachable() -> !;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.needs_drop.html'
|
|
|
|
//@ has - '//pre[@class="rust item-decl"]' 'pub unsafe extern "C" fn needs_drop() -> !'
|
2021-06-15 09:08:18 -05:00
|
|
|
pub fn needs_drop() -> !;
|
|
|
|
}
|