File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
compiler/rustc_session/src Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -1842,7 +1842,10 @@ options! {
1842
1842
"the size at which the `large_assignments` lint starts to be emitted" ) ,
1843
1843
mutable_noalias: bool = ( true , parse_bool, [ TRACKED ] ,
1844
1844
"emit noalias metadata for mutable references (default: yes)" ) ,
1845
- next_solver: Option <NextSolverConfig > = ( None , parse_next_solver_config, [ TRACKED ] ,
1845
+ next_solver: Option <NextSolverConfig > = ( Some ( NextSolverConfig {
1846
+ coherence: true ,
1847
+ globally: false ,
1848
+ } ) , parse_next_solver_config, [ TRACKED ] ,
1846
1849
"enable and configure the next generation trait solver used by rustc" ) ,
1847
1850
nll_facts: bool = ( false , parse_bool, [ UNTRACKED ] ,
1848
1851
"dump facts from NLL analysis into side files (default: no)" ) ,
You can’t perform that action at this time.
0 commit comments