From 0bd469cf45140296b84f8b6022551cc784e203fe Mon Sep 17 00:00:00 2001 From: rustbot Date: Tue, 5 Oct 2021 12:07:30 +0000 Subject: [PATCH] ices/87308.sh: fixed with no errors === stdout === #![feature(prelude_import)] #![no_std] #[prelude_import] use ::std::prelude::rust_2015::*; #[macro_use] extern crate std; macro_rules! foo { () => { break 'x ; } //~ ERROR use of undeclared label `'x` } pub fn main() { loop { } } === stderr === ============== --- {ices => fixed}/87308.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/87308.sh (100%) diff --git a/ices/87308.sh b/fixed/87308.sh similarity index 100% rename from ices/87308.sh rename to fixed/87308.sh