Skip to content

Commit

Permalink
Update toolchain to nightly-2023-09-19
Browse files Browse the repository at this point in the history
Propagate changes from rust-lang/rust#115748.
  • Loading branch information
Remi Delmas committed Sep 19, 2023
1 parent 43392e5 commit ca1b2ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kani-compiler/src/kani_middle/reachability.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,8 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MonoItemsFnCollector<'a, 'tcx> {
match self.tcx.const_eval_resolve(ParamEnv::reveal_all(), un_eval, None) {
// The `monomorphize` call should have evaluated that constant already.
Ok(const_val) => const_val,
Err(ErrorHandled::TooGeneric) => span_bug!(
self.body.source_info(location).span,
Err(ErrorHandled::TooGeneric(span)) => span_bug!(
span,
"Unexpected polymorphic constant: {:?}",
literal
),
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-2023-09-18"
channel = "nightly-2023-09-19"
components = ["llvm-tools-preview", "rustc-dev", "rust-src", "rustfmt"]

0 comments on commit ca1b2ce

Please sign in to comment.