Skip to content

Commit bfb22f1

Browse files
authored
Upgrade Rust toolchain to 2025-09-18 (model-checking#4366)
Relevant upstream PR: - rust-lang/rust#146564 (Remove Rvalue::Len again.) Resolves: model-checking#4365 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 ae58550 commit bfb22f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kani-compiler/src/kani_middle/points_to/points_to_analysis.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ impl<'tcx> PointsToAnalysis<'_, 'tcx> {
582582
// The same story from BinOp applies here, too. Need to track those things.
583583
self.successors_for_operand(state, operand)
584584
}
585-
Rvalue::NullaryOp(..) | Rvalue::Discriminant(..) | Rvalue::Len(_) => {
585+
Rvalue::NullaryOp(..) | Rvalue::Discriminant(..) => {
586586
// All of those should yield a constant.
587587
HashSet::new()
588588
}

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-2025-09-17"
5+
channel = "nightly-2025-09-18"
66
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]

0 commit comments

Comments
 (0)