From 2f304c769462d3dcff704a526f7dfffb74e56ec4 Mon Sep 17 00:00:00 2001 From: rustbot Date: Tue, 23 Aug 2022 03:53:08 +0000 Subject: [PATCH] ices/92470.rs: fixed with errors === stdout === === stderr === warning: function cannot return without recursing --> /home/runner/work/glacier/glacier/ices/92470.rs:11:1 | 11 | fn encode(mut encoder: E) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing 12 | encoder.writer(); 13 | encode(&mut encoder); | -------------------- recursive call site | = note: `#[warn(unconditional_recursion)]` on by default = help: a `loop` may express intention better if this is on purpose error[E0275]: overflow evaluating the requirement `::W` | = help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`92470`) error: aborting due to previous error; 1 warning emitted For more information about this error, try `rustc --explain E0275`. ============== --- {ices => fixed}/92470.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/92470.rs (100%) diff --git a/ices/92470.rs b/fixed/92470.rs similarity index 100% rename from ices/92470.rs rename to fixed/92470.rs