Closed
Description
When I go to complete this function:
fn poll(&mut self, value: &mut Context);
future.poll(&mut )
// ^ The point is here
I see these completions:
&mut context
definitely seems like the one I want. However, when I select it, it doesn't seem to be aware that I already typed &mut
, and inserts it again:
future.poll(&mut &mut context)
This completion should be sufficiently context-sensitive that it doesn't double up the &mut
prefix.