Merge pull request #4605 from RalfJung/used

silence unused import error
This commit is contained in:
Ralf Jung 2025-09-27 09:26:57 +00:00 committed by GitHub
commit 501163040c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -352,6 +352,7 @@ fn fatal_error_(msg: &impl std::fmt::Display) -> ! {
macro_rules! fatal_error {
($($tt:tt)*) => { $crate::fatal_error_(&format_args!($($tt)*)) };
}
#[allow(unused)] // use depends on cfg
use fatal_error;
/// Execute a compiler with the given CLI arguments and callbacks.