about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNixon Enraght-Moony <nixon.emoony@gmail.com>2022-09-14 22:19:43 +0100
committerNixon Enraght-Moony <nixon.emoony@gmail.com>2022-09-14 22:19:43 +0100
commitbcef48373874a880fde9cb8f11af92fd5fea252d (patch)
tree3fbd2ea8f6c5ff0998f4195c0263d55a1daef36e /src
parentc97922dca563cb7f9385b18dbf7ca8c97f8e1597 (diff)
downloadrust-bcef48373874a880fde9cb8f11af92fd5fea252d.tar.gz
rust-bcef48373874a880fde9cb8f11af92fd5fea252d.zip
Add test for #101743
Diffstat (limited to 'src')
-rw-r--r--src/test/rustdoc/issue-101743-bold-tag.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-101743-bold-tag.rs b/src/test/rustdoc/issue-101743-bold-tag.rs
new file mode 100644
index 00000000000..631181fec66
--- /dev/null
+++ b/src/test/rustdoc/issue-101743-bold-tag.rs
@@ -0,0 +1,19 @@
+// Regression test for https://github.com/rust-lang/rust/issues/101743
+
+#![crate_name="foo"]
+
+pub type Word = usize;
+pub struct Repr<const B: usize>([i32; B]);
+pub struct IBig(usize);
+
+pub const fn base_as_ibig<const B: Word>() -> IBig {
+    IBig(B)
+}
+
+impl<const B: Word> Repr<B> {
+    // If we change back to rendering the value of consts, check this doesn't add
+    // a <b> tag, but escapes correctly
+
+    // @has foo/struct.Repr.html '//section[@id="associatedconstant.BASE"]/h4' '= _'
+    pub const BASE: IBig = base_as_ibig::<B>();
+}