From 8d5d1a88e31a4cc8b1a834d723ed305815207d01 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sat, 30 Apr 2022 12:06:06 +0000 Subject: [PATCH] ices/92305.sh: fixed with errors === stdout === === stderr === error[E0107]: missing generics for struct `Vec` --> :4:45 | 4 | fn f(data: &[T]) -> impl Iterator { | ^^^ expected at least 1 generic argument | help: add missing generic argument | 4 | fn f(data: &[T]) -> impl Iterator> { | ~~~~~~ error[E0282]: type annotations needed --> :5:5 | 5 | iter::empty() | ^^^^^^^^^^^ cannot infer type for type parameter `T` declared on the function `empty` error[E0282]: type annotations needed --> :8:35 | 8 | fn g(data: &[T], target: T) -> impl Iterator> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type error: aborting due to 3 previous errors Some errors have detailed explanations: E0107, E0282. For more information about an error, try `rustc --explain E0107`. ============== --- {ices => fixed}/92305.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/92305.sh (100%) diff --git a/ices/92305.sh b/fixed/92305.sh similarity index 100% rename from ices/92305.sh rename to fixed/92305.sh