Skip to content

Commit 0ec046c

Browse files
authored
Update toolchain to nightly-2023-09-05 (rust-lang#2734)
1 parent 1a4bd9d commit 0ec046c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

cprover_bindings/src/irep/to_irep.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -509,16 +509,16 @@ impl goto_program::Symbol {
509509
SymbolValues::None => Irep::nil(),
510510
},
511511
location: self.location.to_irep(mm),
512-
/// Unique identifier, same as key in symbol table `foo::x`
512+
// Unique identifier, same as key in symbol table `foo::x`
513513
name: self.name,
514-
/// Only used by verilog
514+
// Only used by verilog
515515
module: self.module.unwrap_or("".into()),
516-
/// Local identifier `x`
516+
// Local identifier `x`
517517
base_name: self.base_name.unwrap_or("".into()),
518-
/// Almost always the same as base_name, but with name mangling can be relevant
518+
// Almost always the same as `base_name`, but with name mangling can be relevant
519519
pretty_name: self.pretty_name.unwrap_or("".into()),
520-
/// Currently set to C. Consider creating a "rust" mode and using it in cbmc
521-
/// https://github.com/model-checking/kani/issues/1
520+
// Currently set to C. Consider creating a "rust" mode and using it in cbmc
521+
// https://github.com/model-checking/kani/issues/1
522522
mode: self.mode.to_string().into(),
523523

524524
// global properties

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-2023-09-02"
5+
channel = "nightly-2023-09-05"
66
components = ["llvm-tools-preview", "rustc-dev", "rust-src", "rustfmt"]

0 commit comments

Comments
 (0)