rustc_driver_impl: Address all rustc::potential_query_instability lints

Instead of allowing `rustc::potential_query_instability` on the whole
crate we go over each lint and allow it individually if it is safe to
do. Turns out there were no instances of this lint in this crate.
This commit is contained in:
Martin Nordholts 2023-12-05 06:19:12 +01:00
parent 317d14a56c
commit 0e3e16cb5e

View File

@ -13,7 +13,6 @@
#![feature(let_chains)]
#![feature(panic_update_hook)]
#![recursion_limit = "256"]
#![allow(rustc::potential_query_instability)]
#![deny(rustc::untranslatable_diagnostic)]
#![deny(rustc::diagnostic_outside_of_impl)]