2022-09-14 16:19:43 -05:00
|
|
|
// 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
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/struct.Repr.html '//section[@id="associatedconstant.BASE"]/h4' '= _'
|
2022-09-14 16:19:43 -05:00
|
|
|
pub const BASE: IBig = base_as_ibig::<B>();
|
|
|
|
}
|