File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -180,12 +180,12 @@ pub fn main() {
180
180
181
181
rustc_driver:: init_rustc_env_logger ( & early_dcx) ;
182
182
183
- let using_internal_features = rustc_driver:: install_ice_hook ( BUG_REPORT_URL , |handler | {
183
+ let using_internal_features = rustc_driver:: install_ice_hook ( BUG_REPORT_URL , |dcx | {
184
184
// FIXME: this macro calls unwrap internally but is called in a panicking context! It's not
185
185
// as simple as moving the call from the hook to main, because `install_ice_hook` doesn't
186
186
// accept a generic closure.
187
187
let version_info = rustc_tools_util:: get_version_info!( ) ;
188
- handler . note ( format ! ( "Clippy version: {version_info}" ) ) ;
188
+ dcx . handle ( ) . note ( format ! ( "Clippy version: {version_info}" ) ) ;
189
189
} ) ;
190
190
191
191
exit ( rustc_driver:: catch_with_exit_code ( move || {
You can’t perform that action at this time.
0 commit comments