We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 159ba4c commit dc65c63Copy full SHA for dc65c63
compiler/rustc_driver_impl/src/lib.rs
@@ -511,9 +511,9 @@ fn make_input(
511
Ok(Some(Input::Str { name, input }))
512
}
513
[ifile] => Ok(Some(Input::File(PathBuf::from(ifile)))),
514
- _ => early_dcx.early_fatal(format!(
+ [ifile1, ifile2, ..] => early_dcx.early_fatal(format!(
515
"multiple input filenames provided (first two filenames are `{}` and `{}`)",
516
- free_matches[0], free_matches[1],
+ ifile1, ifile2
517
)),
518
519
0 commit comments