There was an error while loading. Please reload this page.
1 parent c5b8780 commit a6cebcdCopy full SHA for a6cebcd
2 files changed
source/rust_verify/src/attributes.rs
@@ -1425,4 +1425,7 @@ pub const RUSTC_ATTRS_OK_TO_IGNORE: &[&str] = &[
1425
"rustc_insignificant_dtor",
1426
// Boxes
1427
"rustc_box",
1428
+ // Support for separate definition of struct type and member methods
1429
+ "rustc_has_incoherent_inherent_impls",
1430
+ "rustc_allow_incoherent_impl",
1431
];
tools/vargo/src/context.rs
@@ -69,7 +69,7 @@ fn get_rust_toolchain(
69
70
if !in_nextest {
71
let active_toolchain_re =
72
- Regex::new(r"^(([A-Za-z0-9.-]+)-(?:aarch64|x86_64)-[A-Za-z0-9]+-[A-Za-z0-9-]+)")
+ Regex::new(r"^(([A-Za-z0-9.-]+)-(?:aarch64|x86_64)-[A-Za-z0-9]+-[A-Za-z0-9-]+) \((?:overridden|environment override) by '?(.*)'?\)")
73
.unwrap();
74
75
let rustup_output = run_rustup_toolchain()?;
0 commit comments