Skip to content

Commit 8dcf868

Browse files
committed
Add test for issue-72911
1 parent 832d0a7 commit 8dcf868

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

src/test/ui/impl-trait/issue-72911.rs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Regression test for #72911.
2+
3+
pub struct Lint {}
4+
5+
impl Lint {}
6+
7+
pub fn gather_all() -> impl Iterator<Item = Lint> {
8+
//~^ ERROR: cannot resolve opaque type
9+
lint_files().flat_map(|f| gather_from_file(&f))
10+
}
11+
12+
fn gather_from_file(dir_entry: &foo::MissingItem) -> impl Iterator<Item = Lint> {
13+
//~^ ERROR: failed to resolve
14+
unimplemented!()
15+
}
16+
17+
fn lint_files() -> impl Iterator<Item = foo::MissingItem> {
18+
//~^ ERROR: failed to resolve
19+
unimplemented!()
20+
}
21+
22+
fn main() {}
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
error[E0433]: failed to resolve: use of undeclared type 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 type or module `foo`
6+
7+
error[E0433]: failed to resolve: use of undeclared type 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 type or module `foo`
12+
13+
error[E0720]: cannot resolve opaque type
14+
--> $DIR/issue-72911.rs:7:24
15+
|
16+
LL | pub fn gather_all() -> impl Iterator<Item = Lint> {
17+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ recursive opaque type
18+
LL |
19+
LL | lint_files().flat_map(|f| gather_from_file(&f))
20+
| -----------------------------------------------
21+
| |
22+
| returning here with type `std::iter::FlatMap<impl std::iter::Iterator, [type error], [closure@$DIR/issue-72911.rs:9:27: 9:51]>`
23+
| returning here with type `std::iter::FlatMap<impl std::iter::Iterator, [type error], [closure@$DIR/issue-72911.rs:9:27: 9:51]>`
24+
...
25+
LL | fn gather_from_file(dir_entry: &foo::MissingItem) -> impl Iterator<Item = Lint> {
26+
| -------------------------- returning this opaque type `std::iter::FlatMap<impl std::iter::Iterator, [type error], [closure@$DIR/issue-72911.rs:9:27: 9:51]>`
27+
...
28+
LL | fn lint_files() -> impl Iterator<Item = foo::MissingItem> {
29+
| -------------------------------------- returning this opaque type `std::iter::FlatMap<impl std::iter::Iterator, [type error], [closure@$DIR/issue-72911.rs:9:27: 9:51]>`
30+
31+
error: aborting due to 3 previous errors
32+
33+
Some errors have detailed explanations: E0433, E0720.
34+
For more information about an error, try `rustc --explain E0433`.

0 commit comments

Comments
 (0)