ICE when running cargo test
#94028
Labels
A-incr-comp
Area: Incremental compilation
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Unfortunately, I can't reproduce this. I ran
cargo clean
so that I could start to narrow things down and it went away. It did happen multiple times in a row.This command triggered it:
RUST_LOG=debug cargo test smoketest -- --nocapture
But this didn't:
cargo check --all-features --all-targets
Code
I can't post everything, but here's the line it's referencing. It seems totally benign.
"#0 [type_of] computing type of
query::node_query::<impl at graph-query/src/query/node_query.rs:20:1: 91:2>::names::{opaque#0}
"That is referring to the
new
method. I assume the opaque type it's referring to isimpl Into<String>
. Maybe notable is thatnew
is called only by another methoddefault
, and that is only called in tests.Meta
rustc --version --verbose
:Error output
Backtrace
The text was updated successfully, but these errors were encountered: