Replace use of a syn From impl
The From impls may be going away in the next version of syn.
This commit is contained in:
parent
3202a6858a
commit
48cc2a6327
@ -84,7 +84,7 @@ impl ReplaceReceiver<'_> {
|
||||
self.visit_type_mut_impl(ty);
|
||||
return;
|
||||
};
|
||||
*ty = self.self_ty(span).into();
|
||||
*ty = Type::Path(self.self_ty(span));
|
||||
}
|
||||
|
||||
// `Self::Assoc` -> `<Receiver>::Assoc`
|
||||
|
Loading…
Reference in New Issue
Block a user