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 6e4971d commit 76d573bCopy full SHA for 76d573b
compiler/rustc_query_system/src/query/plumbing.rs
@@ -412,7 +412,9 @@ where
412
if let Some((cached_result, _)) = cache.lookup(&key) {
413
let Some(hasher) = query.hash_result() else {
414
panic!(
415
- "fed query later has its value computed. The already cached value: {}",
+ "no_hash fed query later has its value computed.\n\
416
+ Remove `no_hash` modifier to allow recomputation.\n\
417
+ The already cached value: {}",
418
(query.format_value())(&cached_result)
419
);
420
};
0 commit comments