From bcef48373874a880fde9cb8f11af92fd5fea252d Mon Sep 17 00:00:00 2001 From: Nixon Enraght-Moony Date: Wed, 14 Sep 2022 22:19:43 +0100 Subject: [PATCH] Add test for #101743 --- src/test/rustdoc/issue-101743-bold-tag.rs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/test/rustdoc/issue-101743-bold-tag.rs 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([i32; B]); +pub struct IBig(usize); + +pub const fn base_as_ibig() -> IBig { + IBig(B) +} + +impl Repr { + // If we change back to rendering the value of consts, check this doesn't add + // a tag, but escapes correctly + + // @has foo/struct.Repr.html '//section[@id="associatedconstant.BASE"]/h4' '= _' + pub const BASE: IBig = base_as_ibig::(); +}