summaryrefslogtreecommitdiff
path: root/tests/rustdoc-ui
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2023-04-18 12:22:13 -0700
committerMichael Howell <michael@notriddle.com>2023-04-18 12:22:13 -0700
commitdf8a48fc8aa537cda418c8c739df417122db3697 (patch)
tree109ccd141d8254858b55282692461d793a2df7b1 /tests/rustdoc-ui
parentde96f3d8735b70d5dc1ca178aaee198b329b8f3d (diff)
downloadrust-df8a48fc8aa537cda418c8c739df417122db3697.tar.gz
rustdoc: fix ICE from rustc_resolve and librustdoc parse divergence
Diffstat (limited to 'tests/rustdoc-ui')
-rw-r--r--tests/rustdoc-ui/intra-doc/issue-110495-suffix-with-space.rs6
-rw-r--r--tests/rustdoc-ui/intra-doc/issue-110495-suffix-with-space.stderr54
2 files changed, 60 insertions, 0 deletions
diff --git a/tests/rustdoc-ui/intra-doc/issue-110495-suffix-with-space.rs b/tests/rustdoc-ui/intra-doc/issue-110495-suffix-with-space.rs
new file mode 100644
index 00000000000..ef9c56f7592
--- /dev/null
+++ b/tests/rustdoc-ui/intra-doc/issue-110495-suffix-with-space.rs
@@ -0,0 +1,6 @@
+// this test used to ICE
+#![deny(rustdoc::broken_intra_doc_links)]
+//! [Clone ()]. //~ ERROR unresolved
+//! [Clone !]. //~ ERROR incompatible
+//! [`Clone ()`]. //~ ERROR unresolved
+//! [`Clone !`]. //~ ERROR incompatible
diff --git a/tests/rustdoc-ui/intra-doc/issue-110495-suffix-with-space.stderr b/tests/rustdoc-ui/intra-doc/issue-110495-suffix-with-space.stderr
new file mode 100644
index 00000000000..8669b0c2086
--- /dev/null
+++ b/tests/rustdoc-ui/intra-doc/issue-110495-suffix-with-space.stderr
@@ -0,0 +1,54 @@
+error: unresolved link to `Clone`
+ --> $DIR/issue-110495-suffix-with-space.rs:3:6
+ |
+LL | //! [Clone ()].
+ | ^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
+ |
+note: the lint level is defined here
+ --> $DIR/issue-110495-suffix-with-space.rs:2:9
+ |
+LL | #![deny(rustdoc::broken_intra_doc_links)]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+help: to link to the trait, prefix with `trait@`
+ |
+LL - //! [Clone ()].
+LL + //! [trait@Clone ].
+ |
+
+error: incompatible link kind for `Clone`
+ --> $DIR/issue-110495-suffix-with-space.rs:4:6
+ |
+LL | //! [Clone !].
+ | ^^^^^^^ this link resolved to a derive macro, which is not a macro
+ |
+help: to link to the derive macro, prefix with `derive@`
+ |
+LL - //! [Clone !].
+LL + //! [derive@Clone ].
+ |
+
+error: unresolved link to `Clone`
+ --> $DIR/issue-110495-suffix-with-space.rs:5:7
+ |
+LL | //! [`Clone ()`].
+ | ^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
+ |
+help: to link to the trait, prefix with `trait@`
+ |
+LL - //! [`Clone ()`].
+LL + //! [`trait@Clone (`].
+ |
+
+error: incompatible link kind for `Clone`
+ --> $DIR/issue-110495-suffix-with-space.rs:6:7
+ |
+LL | //! [`Clone !`].
+ | ^^^^^^^ this link resolved to a derive macro, which is not a macro
+ |
+help: to link to the derive macro, prefix with `derive@`
+ |
+LL | //! [`derive@Clone !`].
+ | +++++++
+
+error: aborting due to 4 previous errors
+