From e5a6e5c12888f1db7437de0e30930604706c2d6d Mon Sep 17 00:00:00 2001 From: rustbot Date: Sun, 12 May 2024 03:06:23 +0000 Subject: [PATCH] ices/97006.sh: fixed with errors === stdout === #![allow(unused)] #[prelude_import] use ::std::prelude::rust_2015::*; #[macro_use] extern crate std; macro_rules! m { ($attr_path: path) => { #[$attr_path] fn f() {} } } #[ inline] fn f() { } //~ ERROR: unexpected generic arguments in path fn main() { } === stderr === error: unexpected generic arguments in path --> out.rs:11:10 | 11 | m!(inline); //~ ERROR: unexpected generic arguments in path | ^^^^ error: aborting due to 1 previous error ============== --- {ices => fixed}/97006.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/97006.sh (100%) diff --git a/ices/97006.sh b/fixed/97006.sh similarity index 100% rename from ices/97006.sh rename to fixed/97006.sh