Skip to content

Commit

Permalink
enable -Znext-solver=coherence
Browse files Browse the repository at this point in the history
  • Loading branch information
lcnr committed Aug 12, 2024
1 parent 569d014 commit 8c41f3f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion compiler/rustc_session/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1842,7 +1842,10 @@ options! {
"the size at which the `large_assignments` lint starts to be emitted"),
mutable_noalias: bool = (true, parse_bool, [TRACKED],
"emit noalias metadata for mutable references (default: yes)"),
next_solver: Option<NextSolverConfig> = (None, parse_next_solver_config, [TRACKED],
next_solver: Option<NextSolverConfig> = (Some( NextSolverConfig {
coherence: true,
globally: false,
}), parse_next_solver_config, [TRACKED],
"enable and configure the next generation trait solver used by rustc"),
nll_facts: bool = (false, parse_bool, [UNTRACKED],
"dump facts from NLL analysis into side files (default: no)"),
Expand Down

0 comments on commit 8c41f3f

Please sign in to comment.