You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's the revised test case from #1908. It used to just crash with a poor error message, but now it doesn't fail at all despite the lack of anything named output_styl.
export output_format;
export output_styl;
export config;
#[doc = "The type of document to output"]
enum output_format {
#[doc = "Markdown"]
markdown,
#[doc = "HTML, via markdown and pandoc"]
pandoc_html
}
#[doc = "How to organize the output"]
enum output_style {
#[doc = "All in a single document"]
one_doc,
#[doc = "Each module in its own document"]
doc_per_mod
}
#[doc = "The configuration for this rustdoc session"]
type config = {
output_dir: &str,
output_format: output_format,
output_style: output_style,
pandoc_cmd: option<&str>
};
Compiled with rustc --lib 1908.rs.
The text was updated successfully, but these errors were encountered:
This migration was fairly straight forward, most constructs have a 1:1
map from internal APIs to StableMIR APIs. I've also removed the
`is_coroutine()` and the `is_box()` methods from `ty_stable`, since they
were added to the StableMIR APIs together with other type methods here:
rust-lang#118846.
Here's the revised test case from #1908. It used to just crash with a poor error message, but now it doesn't fail at all despite the lack of anything named
output_styl
.Compiled with
rustc --lib 1908.rs
.The text was updated successfully, but these errors were encountered: