Skip to content

Commit e45ca0b

Browse files
committed
enable new solver everywhere
1 parent 973d9f7 commit e45ca0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/rustc_session/src/options.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1815,7 +1815,8 @@ options! {
18151815
"the size at which the `large_assignments` lint starts to be emitted"),
18161816
mutable_noalias: bool = (true, parse_bool, [TRACKED],
18171817
"emit noalias metadata for mutable references (default: yes)"),
1818-
next_solver: Option<NextSolverConfig> = (None, parse_next_solver_config, [TRACKED],
1818+
next_solver: Option<NextSolverConfig> = (Some(NextSolverConfig { coherence: true, globally: true, dump_tree: Default::default() })
1819+
, parse_next_solver_config, [TRACKED],
18191820
"enable and configure the next generation trait solver used by rustc"),
18201821
nll_facts: bool = (false, parse_bool, [UNTRACKED],
18211822
"dump facts from NLL analysis into side files (default: no)"),

0 commit comments

Comments
 (0)