From 0873a815758a8afc6ab92ba89ea80cb12395abc9 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sun, 31 Mar 2024 03:06:49 +0000 Subject: [PATCH] ices/111906-3.rs: fixed with no errors === stdout === === stderr === warning: function cannot return without recursing --> /home/runner/work/glacier/glacier/ices/111906-3.rs:1:1 | 1 | fn foo<'a: 'a>() -> impl Sized + 'a { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing 2 | let _: *mut &'a () = foo::<'a>(); | ----------- recursive call site | = help: a `loop` may express intention better if this is on purpose = note: `#[warn(unconditional_recursion)]` on by default warning: function `foo` is never used --> /home/runner/work/glacier/glacier/ices/111906-3.rs:1:4 | 1 | fn foo<'a: 'a>() -> impl Sized + 'a { | ^^^ | = note: `#[warn(dead_code)]` on by default warning: 2 warnings emitted ============== --- {ices => fixed}/111906-3.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/111906-3.rs (100%) diff --git a/ices/111906-3.rs b/fixed/111906-3.rs similarity index 100% rename from ices/111906-3.rs rename to fixed/111906-3.rs