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 b4485be commit b4e3421Copy full SHA for b4e3421
compiler/rustc_hir_analysis/src/check/wfcheck.rs
@@ -149,7 +149,7 @@ where
149
match ty.kind() {
150
ty::Adt(def, _) => {
151
let adt_did = with_no_trimmed_paths!(infcx.tcx.def_path_str(def.0.did));
152
- if adt_did == "bevy_ecs::system::ParamSet" {
+ if adt_did.contains("ParamSet") {
153
return Ok(());
154
}
155
0 commit comments