Rollup merge of #106024 - JulianKnodt:add_term_html_docs, r=notriddle
Fix ICE due to `todo!()` in `rustdoc` for `Term`s Left a todo awhile ago (I think), so fill it in to print a const for `Term`s. Fixes #105952. Should I add some annotations to the rustdoc test?
This commit is contained in:
commit
d2130e4274
2 changed files with 18 additions and 4 deletions
|
@ -1655,10 +1655,10 @@ impl clean::types::Term {
|
||||||
&'a self,
|
&'a self,
|
||||||
cx: &'a Context<'tcx>,
|
cx: &'a Context<'tcx>,
|
||||||
) -> impl fmt::Display + 'a + Captures<'tcx> {
|
) -> impl fmt::Display + 'a + Captures<'tcx> {
|
||||||
match self {
|
display_fn(move |f| match self {
|
||||||
clean::types::Term::Type(ty) => ty.print(cx),
|
clean::types::Term::Type(ty) => fmt::Display::fmt(&ty.print(cx), f),
|
||||||
_ => todo!(),
|
clean::types::Term::Constant(ct) => fmt::Display::fmt(&ct.print(cx.tcx()), f),
|
||||||
}
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
14
src/test/rustdoc/issue-105952.rs
Normal file
14
src/test/rustdoc/issue-105952.rs
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
|
#![feature(associated_const_equality)]
|
||||||
|
pub enum ParseMode {
|
||||||
|
Raw,
|
||||||
|
}
|
||||||
|
pub trait Parse {
|
||||||
|
const PARSE_MODE: ParseMode;
|
||||||
|
}
|
||||||
|
pub trait RenderRaw {}
|
||||||
|
|
||||||
|
// @hasraw foo/trait.RenderRaw.html 'impl'
|
||||||
|
// @hasraw foo/trait.RenderRaw.html 'ParseMode::Raw'
|
||||||
|
impl<T: Parse<PARSE_MODE = { ParseMode::Raw }>> RenderRaw for T {}
|
Loading…
Add table
Reference in a new issue