From 01fdb2c25a16e64caaa14028cca4621d30033804 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sun, 24 Sep 2023 03:05:55 +0000 Subject: [PATCH] ices/93622.rs: fixed with errors === stdout === === stderr === error[E0277]: the size for values of type `(dyn Fn(u64) -> u64 + 'a)` cannot be known at compilation time --> /home/runner/work/glacier/glacier/ices/93622.rs:16:68 | 15 | height_cps(l, {let k : Box = Box::new(move |lh| { | ---- this closure captures all values by move 16 | height_cps(r, {let k : Box = Box::new(|lr| { k(1 + lh.max(lr)) }); *k}) | ^ doesn't have a size known at compile-time | = help: the trait `Sized` is not implemented for `(dyn Fn(u64) -> u64 + 'a)` = note: all values captured by value by a closure must have a statically known size error: aborting due to previous error For more information about this error, try `rustc --explain E0277`. ============== --- {ices => fixed}/93622.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/93622.rs (100%) diff --git a/ices/93622.rs b/fixed/93622.rs similarity index 100% rename from ices/93622.rs rename to fixed/93622.rs