1
Fork 0
rust/src/test/ui/suggestions/impl-trait-missing-lifetime.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

3 lines
91 B
Rust
Raw Normal View History

fn f(_: impl Iterator<Item = &'_ ()>) {} //~ ERROR missing lifetime specifier
fn main() {}