about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2025-09-03 05:34:15 +0000
committerGitHub <noreply@github.com>2025-09-03 05:34:15 +0000
commit5f3197ffb11cc263efd31475781ef98c53750cb4 (patch)
tree5783612df63a41809930ecf425792bcaad347e22 /compiler/rustc_interface/src
parent80c3ba803f15b124fdba2c93d2d167b88abb1e77 (diff)
parentd98a9c6931559f4b40a1913e74f3eb95c32c113c (diff)
downloadrust-5f3197ffb11cc263efd31475781ef98c53750cb4.tar.gz
rust-5f3197ffb11cc263efd31475781ef98c53750cb4.zip
Merge pull request #4560 from rust-lang/rustup-2025-09-03
Automatic Rustup
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/passes.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs
index bc5ef04079e..ca8c10311fb 100644
--- a/compiler/rustc_interface/src/passes.rs
+++ b/compiler/rustc_interface/src/passes.rs
@@ -41,7 +41,7 @@ use rustc_span::{
     Symbol, sym,
 };
 use rustc_target::spec::PanicStrategy;
-use rustc_trait_selection::traits;
+use rustc_trait_selection::{solve, traits};
 use tracing::{info, instrument};
 
 use crate::interface::Compiler;
@@ -895,6 +895,7 @@ pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| {
     rustc_hir_typeck::provide(providers);
     ty::provide(providers);
     traits::provide(providers);
+    solve::provide(providers);
     rustc_passes::provide(providers);
     rustc_traits::provide(providers);
     rustc_ty_utils::provide(providers);