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.
impl Trait
This function produces an "expected lifetime parameter" error:
fn foo(_: impl Iterator<Item = &u8>) {}
This code should instead be accepted and bound the impl Trait parameter by the elided lifetime.
cc #34511