From c1499e88b7b3b3579fa049691791ece4b2f34e7a Mon Sep 17 00:00:00 2001 From: rustbot Date: Wed, 9 Mar 2022 12:05:35 +0000 Subject: [PATCH] ices/79224.rs: fixed with errors === stdout === === stderr === error[E0601]: `main` function not found in crate `79224` --> /home/runner/work/glacier/glacier/ices/79224.rs:23:2 | 23 | } | ^ consider adding a `main` function to `/home/runner/work/glacier/glacier/ices/79224.rs` error[E0277]: the trait bound `B: Clone` is not satisfied --> /home/runner/work/glacier/glacier/ices/79224.rs:19:17 | 19 | impl Display for Cow<'_, B> { | ^^^^^^^ the trait `Clone` is not implemented for `B` | = note: required because of the requirements on the impl of `ToOwned` for `B` help: consider further restricting this bound | 19 | impl Display for Cow<'_, B> { | +++++++++++++++++++ error[E0277]: the trait bound `B: Clone` is not satisfied --> /home/runner/work/glacier/glacier/ices/79224.rs:20:5 | 20 | / fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { 21 | | panic!() 22 | | } | |_____^ the trait `Clone` is not implemented for `B` | = note: required because of the requirements on the impl of `ToOwned` for `B` help: consider further restricting this bound | 19 | impl Display for Cow<'_, B> { | +++++++++++++++++++ error: aborting due to 3 previous errors Some errors have detailed explanations: E0277, E0601. For more information about an error, try `rustc --explain E0277`. ============== --- {ices => fixed}/79224.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/79224.rs (100%) diff --git a/ices/79224.rs b/fixed/79224.rs similarity index 100% rename from ices/79224.rs rename to fixed/79224.rs