We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5b8787 commit 43a06e3Copy full SHA for 43a06e3
ctest-next/src/rustc_queries.rs
@@ -44,6 +44,7 @@ pub fn rustc_version() -> Result<RustcVersion> {
44
45
// eg: rustc 1.87.0 (17067e9ac 2025-05-09)
46
// Assume the format does not change.
47
+ println!("{}", std::str::from_utf8(&output.stdout)?);
48
let [major, minor, patch] = std::str::from_utf8(&output.stdout)?
49
.split_whitespace()
50
.nth(1)
0 commit comments