diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-06-15 16:08:18 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-06-15 22:47:26 +0200 |
| commit | f6830403b3ba09ab8e3b07845061b5fbd30e249d (patch) | |
| tree | 3eee6ba8f9da802914ca81e089ffdce6c155002b | |
| parent | 91f491ecf27f39c1ebba48c7e011a212dde7013c (diff) | |
| download | rust-f6830403b3ba09ab8e3b07845061b5fbd30e249d.tar.gz rust-f6830403b3ba09ab8e3b07845061b5fbd30e249d.zip | |
Add test for safe intrinsics
| -rw-r--r-- | src/test/rustdoc/safe-intrinsic.rs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/rustdoc/safe-intrinsic.rs b/src/test/rustdoc/safe-intrinsic.rs new file mode 100644 index 00000000000..d3bb8514b7e --- /dev/null +++ b/src/test/rustdoc/safe-intrinsic.rs @@ -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() -> !; +} |
