]> git.lizzy.rs Git - rust.git/blob - tests/ui/impl-trait/issue-72911.stderr
Rollup merge of #106097 - mejrs:mir_build2, r=oli-obk
[rust.git] / tests / ui / impl-trait / issue-72911.stderr
1 error[E0433]: failed to resolve: use of undeclared crate or module `foo`
2   --> $DIR/issue-72911.rs:11: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:16:41
9    |
10 LL | fn lint_files() -> impl Iterator<Item = foo::MissingItem> {
11    |                                         ^^^ use of undeclared crate or module `foo`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0433`.