We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e720147 commit 91644ddCopy full SHA for 91644dd
src/tools/miri/src/bin/miri.rs
@@ -341,7 +341,8 @@ fn main() {
341
// (`install_ice_hook` might change `RUST_BACKTRACE`.)
342
let env_snapshot = env::vars_os().collect::<Vec<_>>();
343
344
- let args = rustc_driver::args::raw_args(&early_dcx).unwrap_or_else(|_| std::process::exit(rustc_driver::EXIT_FAILURE));
+ let args = rustc_driver::args::raw_args(&early_dcx)
345
+ .unwrap_or_else(|_| std::process::exit(rustc_driver::EXIT_FAILURE));
346
347
// If the environment asks us to actually be rustc, then do that.
348
if let Some(crate_kind) = env::var_os("MIRI_BE_RUSTC") {
0 commit comments