From 2ff5a220917da69e05230efe263232df946c294c Mon Sep 17 00:00:00 2001 From: rustbot Date: Thu, 29 Oct 2020 12:25:03 +0000 Subject: [PATCH] ices/68543.rs: fixed with errors === stdout === === stderr === warning: the feature `unsized_locals` is incomplete and may not be safe to use and/or cause compiler crashes --> /home/runner/work/glacier/glacier/ices/68543.rs:1:12 | 1 | #![feature(unsized_locals)] | ^^^^^^^^^^^^^^ | = note: `#[warn(incomplete_features)]` on by default = note: see issue #48055 for more information error[E0277]: the size for values of type `(dyn Future + Unpin + 'static)` cannot be known at compilation time --> /home/runner/work/glacier/glacier/ices/68543.rs:6:17 | 6 | async fn bug(mut f: dyn Future + Unpin) -> T { | ^^^^^ doesn't have a size known at compile-time | = help: the trait `Sized` is not implemented for `(dyn Future + Unpin + 'static)` = help: unsized fn params are gated as an unstable feature help: function arguments must have a statically known size, borrowed types always have a known size | 6 | async fn bug(&mut f: dyn Future + Unpin) -> T { | ^ error: aborting due to previous error; 1 warning emitted For more information about this error, try `rustc --explain E0277`. ============== --- {ices => fixed}/68543.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/68543.rs (100%) diff --git a/ices/68543.rs b/fixed/68543.rs similarity index 100% rename from ices/68543.rs rename to fixed/68543.rs