Skip to content

Commit

Permalink
Upgrade toolchain to 2024-09-07
Browse files Browse the repository at this point in the history
  • Loading branch information
zhassan-aws committed Sep 8, 2024
1 parent 20eb00c commit a5504d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion kani-compiler/src/kani_middle/resolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,8 @@ where
debug!(?name, ?ty, "resolve_in_primitive");
let internal_ty = rustc_internal::internal(tcx, ty);
let simple_ty =
fast_reject::simplify_type(tcx, internal_ty, TreatParams::AsCandidateKey).unwrap();
fast_reject::simplify_type(tcx, internal_ty, TreatParams::InstantiateWithInfer)
.unwrap();
let impls = tcx.incoherent_impls(simple_ty).unwrap();
// Find the primitive impl.
let item = impls
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# SPDX-License-Identifier: Apache-2.0 OR MIT

[toolchain]
channel = "nightly-2024-09-06"
channel = "nightly-2024-09-07"
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]

0 comments on commit a5504d4

Please sign in to comment.