Skip to content

Commit 3b9665f

Browse files
authored
Upgrade rust toolchain to 06-26 (rust-lang#3299)
Related change: - rust-lang@24e41f1d13 Resolves rust-lang#3294 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
1 parent 3adb262 commit 3b9665f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kani-compiler/src/kani_middle/intrinsics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ impl<'tcx> ModelIntrinsics<'tcx> {
7777
let Operand::Constant(fn_def) = func else { unreachable!() };
7878
fn_def.const_ = mirConst::from_value(
7979
ConstValue::ZeroSized,
80-
tcx.type_of(stub_id).instantiate(tcx, &new_gen_args),
80+
tcx.type_of(stub_id).instantiate(tcx, &*new_gen_args),
8181
);
8282
} else {
8383
debug!(?arg_ty, "replace_simd_bitmask failed");

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# SPDX-License-Identifier: Apache-2.0 OR MIT
33

44
[toolchain]
5-
channel = "nightly-2024-06-25"
5+
channel = "nightly-2024-06-26"
66
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]

0 commit comments

Comments
 (0)