diff options
| author | bors <bors@rust-lang.org> | 2023-01-31 19:24:29 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-01-31 19:24:29 +0000 |
| commit | dc1d9d50fba2f6a1ccab8748a0050cde38253f60 (patch) | |
| tree | 1497db582bb148e212d04fb4acc229d85aff2617 /compiler/rustc_data_structures/src | |
| parent | f361413cbf44ce2f144df59fc440cd484af4a56e (diff) | |
| parent | 652f79e83543eab07c33840748cf5df37b42ac66 (diff) | |
| download | rust-dc1d9d50fba2f6a1ccab8748a0050cde38253f60.tar.gz rust-dc1d9d50fba2f6a1ccab8748a0050cde38253f60.zip | |
Auto merge of #107297 - Mark-Simulacrum:bump-bootstrap, r=pietroalbini
Bump bootstrap compiler to 1.68 This also changes our stage0.json to include the rustc component for the rustfmt pinned nightly toolchain, which is currently necessary due to rustfmt dynamically linking to that toolchain's librustc_driver and libstd. r? `@pietroalbini`
Diffstat (limited to 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/obligation_forest/mod.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rustc_data_structures/src/obligation_forest/mod.rs b/compiler/rustc_data_structures/src/obligation_forest/mod.rs index dda422c6dd0..16f401f2057 100644 --- a/compiler/rustc_data_structures/src/obligation_forest/mod.rs +++ b/compiler/rustc_data_structures/src/obligation_forest/mod.rs @@ -95,10 +95,7 @@ pub trait ForestObligation: Clone + Debug { pub trait ObligationProcessor { type Obligation: ForestObligation; type Error: Debug; - type OUT: OutcomeTrait< - Obligation = Self::Obligation, - Error = Error<Self::Obligation, Self::Error>, - >; + type OUT: OutcomeTrait<Obligation = Self::Obligation, Error = Error<Self::Obligation, Self::Error>>; fn needs_process_obligation(&self, obligation: &Self::Obligation) -> bool; |
