@@ -5,7 +5,9 @@ use rustc_errors::{emitter::HumanReadableErrorType, registry, ColorConfig};
5
5
use rustc_session:: config:: InstrumentCoverage ;
6
6
use rustc_session:: config:: Strip ;
7
7
use rustc_session:: config:: { build_configuration, build_session_options, to_crate_config} ;
8
- use rustc_session:: config:: { rustc_optgroups, ErrorOutputType , ExternLocation , Options , Passes } ;
8
+ use rustc_session:: config:: {
9
+ rustc_optgroups, ErrorOutputType , ExternLocation , LocationDetail , Options , Passes ,
10
+ } ;
9
11
use rustc_session:: config:: { CFGuard , ExternEntry , LinkerPluginLto , LtoCli , SwitchWithOptPath } ;
10
12
use rustc_session:: config:: {
11
13
Externs , OutputType , OutputTypes , SymbolManglingVersion , WasiExecModel ,
@@ -733,6 +735,7 @@ fn test_debugging_options_tracking_hash() {
733
735
tracked ! ( instrument_mcount, true ) ;
734
736
tracked ! ( link_only, true ) ;
735
737
tracked ! ( llvm_plugins, vec![ String :: from( "plugin_name" ) ] ) ;
738
+ tracked ! ( location_detail, LocationDetail { file: true , line: false , column: false } ) ;
736
739
tracked ! ( merge_functions, Some ( MergeFunctions :: Disabled ) ) ;
737
740
tracked ! ( mir_emit_retag, true ) ;
738
741
tracked ! ( mir_opt_level, Some ( 4 ) ) ;
0 commit comments