From 33a827b53b426056363a4fc843134f73d38102af Mon Sep 17 00:00:00 2001 From: rustbot Date: Fri, 1 Sep 2023 03:05:57 +0000 Subject: [PATCH] ices/104779.rs: fixed with errors === stdout === === stderr === warning: unused variable: `x` --> /home/runner/work/glacier/glacier/ices/104779.rs:13:28 | 13 | Supertype::Var(x) => {} | ^ help: if this is intentional, prefix it with an underscore: `_x` | = note: `#[warn(unused_variables)]` on by default warning: function cannot return without recursing --> /home/runner/work/glacier/glacier/ices/104779.rs:9:1 | 9 | fn foo() -> impl Sized { | ^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing 10 | loop { 11 | match foo() { | ----- recursive call site | = help: a `loop` may express intention better if this is on purpose = note: `#[warn(unconditional_recursion)]` on by default error: higher-ranked subtype error --> /home/runner/work/glacier/glacier/ices/104779.rs:11:15 | 11 | match foo() { | ^^^^^ error: higher-ranked subtype error --> /home/runner/work/glacier/glacier/ices/104779.rs:12:13 | 12 | Subtype::Bar => (), | ^^^^^^^^^^^^ error: aborting due to 2 previous errors; 2 warnings emitted ============== --- {ices => fixed}/104779.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/104779.rs (100%) diff --git a/ices/104779.rs b/fixed/104779.rs similarity index 100% rename from ices/104779.rs rename to fixed/104779.rs