about summary refs log tree commit diff
path: root/src/test/rustdoc
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2022-10-16 20:39:53 +0400
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2022-10-16 20:44:50 +0400
commitc65f3db2d947a616c9c50ee6ba72d40141a49e3e (patch)
tree02a62c3e0294a5bab08e64472b0c0fda37ea4f15 /src/test/rustdoc
parent8be3ce9056d17f822704b8994f60668adf180fe8 (diff)
downloadrust-c65f3db2d947a616c9c50ee6ba72d40141a49e3e.tar.gz
rust-c65f3db2d947a616c9c50ee6ba72d40141a49e3e.zip
rustdoc: Do not expect `doc(primitive)` modules to always exist
Diffstat (limited to 'src/test/rustdoc')
-rw-r--r--src/test/rustdoc/intra-doc/no-doc-primitive.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/rustdoc/intra-doc/no-doc-primitive.rs b/src/test/rustdoc/intra-doc/no-doc-primitive.rs
new file mode 100644
index 00000000000..e5eba1d8d48
--- /dev/null
+++ b/src/test/rustdoc/intra-doc/no-doc-primitive.rs
@@ -0,0 +1,15 @@
+// Crate tree without a `doc(primitive)` module for primitive type linked to by a doc link.
+
+#![deny(rustdoc::broken_intra_doc_links)]
+#![feature(no_core, lang_items, rustc_attrs)]
+#![no_core]
+#![rustc_coherence_is_core]
+#![crate_type = "rlib"]
+
+// @has no_doc_primitive/index.html
+//! A [`char`] and its [`char::len_utf8`].
+impl char {
+    pub fn len_utf8(self) -> usize {
+        42
+    }
+}