diff --git a/kani-compiler/src/kani_middle/points_to/points_to_analysis.rs b/kani-compiler/src/kani_middle/points_to/points_to_analysis.rs index 6d1b95da3e38..47eed40f19c4 100644 --- a/kani-compiler/src/kani_middle/points_to/points_to_analysis.rs +++ b/kani-compiler/src/kani_middle/points_to/points_to_analysis.rs @@ -582,7 +582,7 @@ impl<'tcx> PointsToAnalysis<'_, 'tcx> { // The same story from BinOp applies here, too. Need to track those things. self.successors_for_operand(state, operand) } - Rvalue::NullaryOp(..) | Rvalue::Discriminant(..) | Rvalue::Len(_) => { + Rvalue::NullaryOp(..) | Rvalue::Discriminant(..) => { // All of those should yield a constant. HashSet::new() } diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 72be30749c1b..5377a788846f 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -2,5 +2,5 @@ # SPDX-License-Identifier: Apache-2.0 OR MIT [toolchain] -channel = "nightly-2025-09-17" +channel = "nightly-2025-09-18" components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]