mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 12:13:43 +00:00
Add test for #101743
This commit is contained in:
parent
c97922dca5
commit
bcef483738
19
src/test/rustdoc/issue-101743-bold-tag.rs
Normal file
19
src/test/rustdoc/issue-101743-bold-tag.rs
Normal file
@ -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>();
|
||||
}
|
Loading…
Reference in New Issue
Block a user