about summary refs log tree commit diff
path: root/compiler/rustc_trait_selection/src/solve.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-04-23 21:35:15 +0000
committerbors <bors@rust-lang.org>2025-04-23 21:35:15 +0000
commitfa58ce343ad498196d799a7381869e79938e952a (patch)
tree3481bdf8c4d8d83776837c885ccd90ee3e5c3d8a /compiler/rustc_trait_selection/src/solve.rs
parentdf35ff6c354f1f1fbf430b84e7dea37dfe997f34 (diff)
parentf943f73db4791d64ff83d72986da8d6250c42933 (diff)
downloadrust-fa58ce343ad498196d799a7381869e79938e952a.tar.gz
rust-fa58ce343ad498196d799a7381869e79938e952a.zip
Auto merge of #138845 - compiler-errors:stall-generators, r=lcnr
Properly stall coroutine witnesses in new solver

TODO: write description

r? lcnr
Diffstat (limited to 'compiler/rustc_trait_selection/src/solve.rs')
-rw-r--r--compiler/rustc_trait_selection/src/solve.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/solve.rs b/compiler/rustc_trait_selection/src/solve.rs
index d425ab50ae0..0c2451a80a7 100644
--- a/compiler/rustc_trait_selection/src/solve.rs
+++ b/compiler/rustc_trait_selection/src/solve.rs
@@ -9,5 +9,8 @@ mod select;
 pub(crate) use delegate::SolverDelegate;
 pub use fulfill::{FulfillmentCtxt, NextSolverError};
 pub(crate) use normalize::deeply_normalize_for_diagnostics;
-pub use normalize::{deeply_normalize, deeply_normalize_with_skipped_universes};
+pub use normalize::{
+    deeply_normalize, deeply_normalize_with_skipped_universes,
+    deeply_normalize_with_skipped_universes_and_ambiguous_goals,
+};
 pub use select::InferCtxtSelectExt;