@@ -5,7 +5,9 @@ use rustc_errors::{emitter::HumanReadableErrorType, registry, ColorConfig};
55use rustc_session:: config:: InstrumentCoverage ;
66use rustc_session:: config:: Strip ;
77use 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+ } ;
911use rustc_session:: config:: { CFGuard , ExternEntry , LinkerPluginLto , LtoCli , SwitchWithOptPath } ;
1012use rustc_session:: config:: {
1113 Externs , OutputType , OutputTypes , SymbolManglingVersion , WasiExecModel ,
@@ -733,6 +735,7 @@ fn test_debugging_options_tracking_hash() {
733735 tracked ! ( instrument_mcount, true ) ;
734736 tracked ! ( link_only, true ) ;
735737 tracked ! ( llvm_plugins, vec![ String :: from( "plugin_name" ) ] ) ;
738+ tracked ! ( location_detail, LocationDetail { file: true , line: false , column: false } ) ;
736739 tracked ! ( merge_functions, Some ( MergeFunctions :: Disabled ) ) ;
737740 tracked ! ( mir_emit_retag, true ) ;
738741 tracked ! ( mir_opt_level, Some ( 4 ) ) ;
0 commit comments