From e51131153e0f49a6f2fc55d4bdfc4e6bc4c92653 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sat, 20 May 2023 03:06:40 +0000 Subject: [PATCH] ices/109343.rs: fixed with errors === stdout === === stderr === error[E0463]: can't find crate for `f` --> /home/runner/work/glacier/glacier/ices/109343.rs:2:1 | 2 | extern crate f; | ^^^^^^^^^^^^^^^ can't find crate error[E0432]: unresolved import `inner` --> /home/runner/work/glacier/glacier/ices/109343.rs:4:9 | 4 | pub use inner::f; | ^^^^^ use of undeclared crate or module `inner` error: extern crate `f` is private, and cannot be re-exported (error E0365), consider declaring with `pub` --> /home/runner/work/glacier/glacier/ices/109343.rs:7:9 | 7 | pub use f as g; | ^^^^^^ | = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! = note: for more information, see issue #34537 = note: `#[deny(pub_use_of_private_extern_crate)]` on by default error: aborting due to 3 previous errors Some errors have detailed explanations: E0432, E0463. For more information about an error, try `rustc --explain E0432`. ============== --- {ices => fixed}/109343.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/109343.rs (100%) diff --git a/ices/109343.rs b/fixed/109343.rs similarity index 100% rename from ices/109343.rs rename to fixed/109343.rs