@@ -6,10 +6,9 @@ use rustc_session::config::{
6
6
build_configuration, build_session_options, rustc_optgroups, BranchProtection , CFGuard , Cfg ,
7
7
DebugInfo , DumpMonoStatsFormat , ErrorOutputType , ExternEntry , ExternLocation , Externs ,
8
8
FunctionReturn , InliningThreshold , Input , InstrumentCoverage , InstrumentXRay ,
9
- LinkSelfContained , LinkerPluginLto , LocationDetail , LtoCli , MirSpanview , OomStrategy , Options ,
10
- OutFileName , OutputType , OutputTypes , PAuthKey , PacRet , Passes , Polonius ,
11
- ProcMacroExecutionStrategy , Strip , SwitchWithOptPath , SymbolManglingVersion , TraitSolver ,
12
- WasiExecModel ,
9
+ LinkSelfContained , LinkerPluginLto , LocationDetail , LtoCli , MirSpanview , NextSolverConfig ,
10
+ OomStrategy , Options , OutFileName , OutputType , OutputTypes , PAuthKey , PacRet , Passes , Polonius ,
11
+ ProcMacroExecutionStrategy , Strip , SwitchWithOptPath , SymbolManglingVersion , WasiExecModel ,
13
12
} ;
14
13
use rustc_session:: lint:: Level ;
15
14
use rustc_session:: search_paths:: SearchPath ;
@@ -781,6 +780,10 @@ fn test_unstable_options_tracking_hash() {
781
780
tracked ! ( mir_opt_level, Some ( 4 ) ) ;
782
781
tracked ! ( move_size_limit, Some ( 4096 ) ) ;
783
782
tracked ! ( mutable_noalias, false ) ;
783
+ tracked ! (
784
+ next_solver,
785
+ Some ( NextSolverConfig { coherence: true , globally: false , dump_tree: Default :: default ( ) } )
786
+ ) ;
784
787
tracked ! ( no_generate_arange_section, true ) ;
785
788
tracked ! ( no_jump_tables, true ) ;
786
789
tracked ! ( no_link, true ) ;
@@ -822,7 +825,6 @@ fn test_unstable_options_tracking_hash() {
822
825
tracked ! ( thir_unsafeck, true ) ;
823
826
tracked ! ( tiny_const_eval_limit, true ) ;
824
827
tracked ! ( tls_model, Some ( TlsModel :: GeneralDynamic ) ) ;
825
- tracked ! ( trait_solver, TraitSolver :: NextCoherence ) ;
826
828
tracked ! ( translate_remapped_path_to_local_path, false ) ;
827
829
tracked ! ( trap_unreachable, Some ( false ) ) ;
828
830
tracked ! ( treat_err_as_bug, NonZeroUsize :: new( 1 ) ) ;
0 commit comments