From 64c1879f5d2eabb3a999bd8c47d6ec9fbcff9229 Mon Sep 17 00:00:00 2001 From: rustbot Date: Mon, 25 Dec 2023 03:06:01 +0000 Subject: [PATCH] ices/103708.rs: fixed with errors === stdout === === stderr === error[E0520]: `foo` specializes an item from a parent `impl`, but that item is not marked `default` --> /home/runner/work/glacier/glacier/ices/103708.rs:12:5 | 7 | impl<'a, T> Dance for T { | ----------------------- parent `impl` is here ... 12 | fn foo() {} | ^^^^^^^^ cannot specialize default item `foo` | = note: to specialize, `foo` in the parent `impl` must be marked `default` error: aborting due to 1 previous error For more information about this error, try `rustc --explain E0520`. ============== --- {ices => fixed}/103708.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/103708.rs (100%) diff --git a/ices/103708.rs b/fixed/103708.rs similarity index 100% rename from ices/103708.rs rename to fixed/103708.rs