From f1661cd1fd1bc1f0eee649ae430b97d37205dd49 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sat, 14 May 2022 12:08:48 +0000 Subject: [PATCH] ices/53092.rs: fixed with errors === stdout === === stderr === error[E0277]: the trait bound `U: From` is not satisfied --> /home/runner/work/glacier/glacier/ices/53092.rs:9:5 | 9 | |x| x.into() | ^^^^^^^^^^^^ the trait `From` is not implemented for `U` | note: required by a bound in `make_bug` --> /home/runner/work/glacier/glacier/ices/53092.rs:8:19 | 8 | fn make_bug>() -> Bug { | ^^^^^^^ required by this bound in `make_bug` help: consider restricting type parameter `U` | 4 | type Bug> = impl Fn(T) -> U + Copy; | +++++++++++++++++++++++ error: aborting due to previous error For more information about this error, try `rustc --explain E0277`. ============== --- {ices => fixed}/53092.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/53092.rs (100%) diff --git a/ices/53092.rs b/fixed/53092.rs similarity index 100% rename from ices/53092.rs rename to fixed/53092.rs