From 1bbc0bd31468db5339a8e6d81516231cae2d7009 Mon Sep 17 00:00:00 2001 From: rustbot Date: Wed, 7 Oct 2020 12:21:48 +0000 Subject: [PATCH] ices/74816.rs: fixed with errors === stdout === === stderr === error[E0277]: the trait bound `Self: Trait1` is not satisfied --> /home/runner/work/glacier/glacier/ices/74816.rs:10:5 | 10 | type Associated: Trait1 = Self; | ^^^^^^^^^^^^^^^^^------^^^^^^^^ | | | | | required by this bound in `Trait2::Associated` | the trait `Trait1` is not implemented for `Self` | help: consider further restricting `Self` | 9 | trait Trait2: Trait1 { | ^^^^^^^^ error[E0277]: the size for values of type `Self` cannot be known at compilation time --> /home/runner/work/glacier/glacier/ices/74816.rs:10:5 | 10 | type Associated: Trait1 = Self; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | doesn't have a size known at compile-time | required by this bound in `Trait2::Associated` | help: consider further restricting `Self` | 9 | trait Trait2: Sized { | ^^^^^^^ error: aborting due to 2 previous errors For more information about this error, try `rustc --explain E0277`. ============== --- {ices => fixed}/74816.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/74816.rs (100%) diff --git a/ices/74816.rs b/fixed/74816.rs similarity index 100% rename from ices/74816.rs rename to fixed/74816.rs