]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/issue-72911.stderr
Auto merge of #95604 - nbdd0121:used2, r=petrochenkov
[rust.git] / src / test / ui / impl-trait / issue-72911.stderr
1 error[E0433]: failed to resolve: use of undeclared crate or module `foo`
2   --> $DIR/issue-72911.rs:12:33
3    |
4 LL | fn gather_from_file(dir_entry: &foo::MissingItem) -> impl Iterator<Item = Lint> {
5    |                                 ^^^ use of undeclared crate or module `foo`
6
7 error[E0433]: failed to resolve: use of undeclared crate or module `foo`
8   --> $DIR/issue-72911.rs:17:41
9    |
10 LL | fn lint_files() -> impl Iterator<Item = foo::MissingItem> {
11    |                                         ^^^ use of undeclared crate or module `foo`
12
13 error[E0277]: `()` is not an iterator
14   --> $DIR/issue-72911.rs:7:24
15    |
16 LL | pub fn gather_all() -> impl Iterator<Item = Lint> {
17    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^ `()` is not an iterator
18    |
19    = help: the trait `Iterator` is not implemented for `()`
20
21 error: aborting due to 3 previous errors
22
23 Some errors have detailed explanations: E0277, E0433.
24 For more information about an error, try `rustc --explain E0277`.