From 6ba5e8f46e4e18394e8cbda0270cb3723a831e21 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sat, 25 Jul 2020 12:14:08 +0000 Subject: [PATCH] ices/72911.rs: fixed with errors === stdout === === stderr === error[E0433]: failed to resolve: use of undeclared type or module `walkdir` --> /home/runner/work/glacier/glacier/ices/72911.rs:10:33 | 10 | fn gather_from_file(dir_entry: &walkdir::DirEntry) -> impl Iterator { | ^^^^^^^ use of undeclared type or module `walkdir` error[E0433]: failed to resolve: use of undeclared type or module `walkdir` --> /home/runner/work/glacier/glacier/ices/72911.rs:15:41 | 15 | fn lint_files() -> impl Iterator { | ^^^^^^^ use of undeclared type or module `walkdir` error[E0720]: cannot resolve opaque type --> /home/runner/work/glacier/glacier/ices/72911.rs:6:24 | 6 | pub fn gather_all() -> impl Iterator { | ^^^^^^^^^^^^^^^^^^^^^^^^^^ recursive opaque type 7 | lint_files().flat_map(|f| gather_from_file(&f)) | ----------------------------------------------- | | | returning here with type `std::iter::FlatMap` | returning here with type `std::iter::FlatMap` ... 10 | fn gather_from_file(dir_entry: &walkdir::DirEntry) -> impl Iterator { | -------------------------- returning this opaque type `std::iter::FlatMap` ... 15 | fn lint_files() -> impl Iterator { | --------------------------------------- returning this opaque type `std::iter::FlatMap` error: aborting due to 3 previous errors Some errors have detailed explanations: E0433, E0720. For more information about an error, try `rustc --explain E0433`. ============== --- {ices => fixed}/72911.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/72911.rs (100%) diff --git a/ices/72911.rs b/fixed/72911.rs similarity index 100% rename from ices/72911.rs rename to fixed/72911.rs