2024-11-01 16:19:42 -05:00
|
|
|
#![feature(intrinsics, rustc_attrs)]
|
2023-01-11 21:19:08 -06:00
|
|
|
#![feature(staged_api)]
|
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
#![stable(since="1.0.0", feature="rust1")]
|
|
|
|
|
2024-11-01 16:19:42 -05:00
|
|
|
//@ has 'foo/fn.transmute.html'
|
|
|
|
//@ has - '//pre[@class="rust item-decl"]' 'pub const unsafe fn transmute<T, U>(_: T) -> U'
|
|
|
|
#[stable(since="1.0.0", feature="rust1")]
|
|
|
|
#[rustc_const_stable(feature = "const_transmute", since = "1.56.0")]
|
|
|
|
#[rustc_intrinsic]
|
|
|
|
#[rustc_intrinsic_must_be_overridden]
|
|
|
|
pub const unsafe fn transmute<T, U>(_: T) -> U {
|
|
|
|
loop {}
|
|
|
|
}
|
2023-01-11 21:19:08 -06:00
|
|
|
|
2024-11-01 16:19:42 -05:00
|
|
|
//@ has 'foo/fn.unreachable.html'
|
|
|
|
//@ has - '//pre[@class="rust item-decl"]' 'pub unsafe fn unreachable() -> !'
|
|
|
|
#[stable(since="1.0.0", feature="rust1")]
|
|
|
|
#[rustc_intrinsic]
|
|
|
|
#[rustc_intrinsic_must_be_overridden]
|
|
|
|
pub unsafe fn unreachable() -> ! {
|
|
|
|
loop {}
|
2023-01-11 21:19:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
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() -> !'
|
2023-01-11 21:19:08 -06:00
|
|
|
#[stable(since="1.0.0", feature="rust1")]
|
|
|
|
pub fn needs_drop() -> !;
|
|
|
|
}
|