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 936df35 commit 5687f89Copy full SHA for 5687f89
chalk-ir/src/visit/boring_impls.rs
@@ -21,7 +21,7 @@ impl<T: Visit<I>, I: Interner> Visit<I> for &T {
21
where
22
I: 'i,
23
{
24
- (**self).visit_with(visitor, outer_binder)
+ T::visit_with(self, visitor, outer_binder)
25
}
26
27
@@ -51,7 +51,7 @@ impl<T: Visit<I>, I: Interner> Visit<I> for Box<T> {
51
52
53
54
55
56
57
@@ -64,7 +64,7 @@ impl<T: Visit<I>, I: Interner> Visit<I> for Arc<T> {
64
65
66
67
68
69
70
0 commit comments