Should wrong_self_convention
apply to self: Box<Self>
, self: Rc<Self>
and self: Arc<Self>
?
#4293
Labels
C-bug
Category: Clippy is not doing the correct thing
The current
wrong_self_convention
warnsself: Box<Self>
,self: Rc<Self>
andself: Arc<Self>
, but they takeself
argument and consumeself
, so I think it makes sense to not warn them.playground
The text was updated successfully, but these errors were encountered: