From 1eaf701ec8c39d6772b96101c035256a46cfadca Mon Sep 17 00:00:00 2001 From: rustbot Date: Mon, 10 Jan 2022 12:06:41 +0000 Subject: [PATCH] ices/91370.rs: fixed with errors === stdout === === stderr === error: incorrect function inside `extern` block --> /home/runner/work/glacier/glacier/ices/91370.rs:2:8 | 1 | extern { | ------ `extern` blocks define existing foreign functions and functions inside of them cannot have a body 2 | fn r() { | ________^___- | | | | | cannot have a body 3 | | impl Copy for u8 {} 4 | | } | |_____- help: remove the invalid body: `;` | = help: you might have meant to write a function accessible through FFI, which can be done by writing `extern fn` outside of the `extern` block = note: for more information, visit https://doc.rust-lang.org/std/keyword.extern.html error: aborting due to previous error ============== --- {ices => fixed}/91370.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/91370.rs (100%) diff --git a/ices/91370.rs b/fixed/91370.rs similarity index 100% rename from ices/91370.rs rename to fixed/91370.rs