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
Auto merge of #83986 - Dylan-DPC:rollup-51vygcj, r=Dylan-DPC
Rollup of 5 pull requests
Successful merges:
- #82497 (Fix handling of `--output-format json` flag)
- #83689 (Add more info for common trait resolution and async/await errors)
- #83952 (Account for `ExprKind::Block` when suggesting .into() and deref)
- #83965 (Add Debug implementation for hir::intravisit::FnKind)
- #83974 (Fix outdated crate names in `rustc_interface::callbacks`)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollup
Copy file name to clipboardexpand all lines: src/librustdoc/config.rs
+13-14
Original file line number
Diff line number
Diff line change
@@ -378,6 +378,17 @@ impl Options {
378
378
}
379
379
}
380
380
381
+
// check for `--output-format=json`
382
+
if !matches!(matches.opt_str("output-format").as_deref(),None | Some("html"))
383
+
&& !matches.opt_present("show-coverage")
384
+
&& !nightly_options::is_unstable_enabled(matches)
385
+
{
386
+
rustc_session::early_error(
387
+
error_format,
388
+
"the -Z unstable-options flag must be passed to enable --output-format for documentation generation (see https://github.com/rust-lang/rust/issues/76578)",
389
+
);
390
+
}
391
+
381
392
let to_check = matches.opt_strs("check-theme");
382
393
if !to_check.is_empty(){
383
394
let paths = theme::load_css_paths(static_files::themes::LIGHT.as_bytes());
@@ -574,13 +585,7 @@ impl Options {
574
585
let output_format = match matches.opt_str("output-format"){
error: the -Z unstable-options flag must be passed to enable --output-format for documentation generation (see https://github.com/rust-lang/rust/issues/76578)
0 commit comments