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 bfaf418 commit 303298bCopy full SHA for 303298b
src/librustc/ich/impls_hir.rs
@@ -654,11 +654,12 @@ impl<'a> HashStable<StableHashingContext<'a>> for ast::Ident {
654
hcx: &mut StableHashingContext<'a>,
655
hasher: &mut StableHasher<W>) {
656
let ast::Ident {
657
- ref name,
658
- span: _ // Ignore this
+ name,
+ span,
659
} = *self;
660
661
name.hash_stable(hcx, hasher);
662
+ span.hash_stable(hcx, hasher);
663
}
664
665
0 commit comments