about summary refs log tree commit diff
path: root/tests/rustdoc
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2023-02-16 18:33:29 +0100
committerGuillaume Gomez <guillaume.gomez@huawei.com>2023-02-18 23:24:58 +0100
commit8d801fd3983d83ee701beb35b86d3d5b6540890e (patch)
tree61106d063a14455b30c14bda84a3dc59f4bed04a /tests/rustdoc
parentfd62036caa266460bcdee5adc370232751e6eb0d (diff)
downloadrust-8d801fd3983d83ee701beb35b86d3d5b6540890e.tar.gz
rust-8d801fd3983d83ee701beb35b86d3d5b6540890e.zip
Add regression test for #107995
Diffstat (limited to 'tests/rustdoc')
-rw-r--r--tests/rustdoc/issue-107995.rs28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/rustdoc/issue-107995.rs b/tests/rustdoc/issue-107995.rs
new file mode 100644
index 00000000000..1273e4fdd12
--- /dev/null
+++ b/tests/rustdoc/issue-107995.rs
@@ -0,0 +1,28 @@
+// Regression test for <https://github.com/rust-lang/rust/issues/107995>.
+
+#![crate_name = "foo"]
+
+// @has 'foo/fn.foo.html'
+// @has - '//*[@class="docblock"]//a[@href="fn.bar.html"]' 'bar`'
+/// A foo, see also [ bar`]
+pub fn foo() {}
+
+// @has 'foo/fn.bar.html'
+// @has - '//*[@class="docblock"]' 'line Path line'
+// @has - '//*[@class="docblock"]//a[@href="struct.Path.html"]' 'Path'
+#[doc = "line ["]
+#[doc = "Path"]
+#[doc = "] line"]
+pub fn bar() {}
+
+// @has 'foo/fn.another.html'
+// @has - '//*[@class="docblock"]//a[@href="struct.Path.html"]' 'Path'
+/// [ `Path`]
+pub fn another() {}
+
+// @has 'foo/fn.last.html'
+// @has - '//*[@class="docblock"]//a[@href="struct.Path.html"]' 'Path'
+/// [ Path`]
+pub fn last() {}
+
+pub struct Path;