I just found `.fold(false, |acc, x| acc || x.starts_with("--target"));` in rustc. That should obviously be `.any(|x| x.starts_with("--target"))`