Add link to stablized version of an intrinsic

This commit is contained in:
Wesley Wiser 2017-10-29 22:53:07 -04:00
parent dae6868637
commit 9ca825e292

View file

@ -627,6 +627,9 @@ extern "rust-intrinsic" {
pub fn rustc_peek<T>(_: T) -> T; pub fn rustc_peek<T>(_: T) -> T;
/// Aborts the execution of the process. /// Aborts the execution of the process.
///
/// The stabilized version of this intrinsic is
/// [`std::process::abort`](../../std/process/fn.abort.html)
pub fn abort() -> !; pub fn abort() -> !;
/// Tells LLVM that this point in the code is not reachable, enabling /// Tells LLVM that this point in the code is not reachable, enabling