From 17f03504becdbc097cbb019e62e25ad0e8159cb0 Mon Sep 17 00:00:00 2001 From: rustbot Date: Tue, 11 Jan 2022 12:07:11 +0000 Subject: [PATCH] ices/84737.sh: fixed with no errors === stdout === === stderr === warning: unnecessary braces around const expression --> :5:26 | 5 | async fn test(test: [(); { 0 }]) { | ^^ ^^ | = note: `#[warn(unused_braces)]` on by default help: remove these braces | 5 - async fn test(test: [(); { 0 }]) { 5 + async fn test(test: [(); 0]) { | warning: function is never used: `test` --> :5:10 | 5 | async fn test(test: [(); { 0 }]) { | ^^^^ | = note: `#[warn(dead_code)]` on by default warning: 2 warnings emitted ============== --- {ices => fixed}/84737.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/84737.sh (100%) diff --git a/ices/84737.sh b/fixed/84737.sh similarity index 100% rename from ices/84737.sh rename to fixed/84737.sh