]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/impl-trait-missing-lifetime.rs
Override rustc version in ui and mir-opt tests to get stable hashes
[rust.git] / src / test / ui / suggestions / impl-trait-missing-lifetime.rs
1 fn f(_: impl Iterator<Item = &'_ ()>) {} //~ ERROR missing lifetime specifier
2 fn main() {}