Unnamed repository; edit this file 'description' to name the repository.
Merge ref '548e586795f6' from rust-lang/rust
Pull recent changes from https://github.com/rust-lang/rust via Josh.
Upstream ref: rust-lang/rust@548e586795f6b6fe089d8329aa5edbf0f5202646
Filtered ref: rust-lang/rust-analyzer@aea42e3bfd2e1b34c79fa597bf62b64ce9591196
Upstream diff: https://github.com/rust-lang/rust/compare/e7d44143a12a526488e4f0c0d7ea8e62a4fe9354...548e586795f6b6fe089d8329aa5edbf0f5202646
This merge was created using https://github.com/rust-lang/josh-sync.
| -rw-r--r-- | crates/hir-ty/src/lower.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir-ty/src/lower.rs b/crates/hir-ty/src/lower.rs index 9da32464c8..a97d768716 100644 --- a/crates/hir-ty/src/lower.rs +++ b/crates/hir-ty/src/lower.rs @@ -861,7 +861,7 @@ impl<'db, 'a> TyLoweringContext<'db, 'a> { TermKind::Ty(ty) => { ty.walk().any(|arg| arg == dummy_self_ty.into()) } - // FIXME(associated_const_equality): We should walk the const instead of not doing anything + // FIXME(mgca): We should walk the const instead of not doing anything TermKind::Const(_) => false, }; |