From 9dfc33d481c4a8893c954b658cb0c64296bb3e94 Mon Sep 17 00:00:00 2001 From: rustbot Date: Wed, 25 Oct 2023 03:05:55 +0000 Subject: [PATCH] ices/83539.rs: fixed with errors === stdout === === stderr === warning: the feature `rustc_attrs` is internal to the compiler or standard library --> /home/runner/work/glacier/glacier/ices/83539.rs:2:12 | 2 | #![feature(rustc_attrs)] | ^^^^^^^^^^^ | = note: using it is strongly discouraged = note: `#[warn(internal_features)]` on by default error[E0507]: cannot move out of `*x` which is behind a shared reference --> /home/runner/work/glacier/glacier/ices/83539.rs:7:5 | 7 | *x; | ^^ move occurs because `*x` has type `S`, which does not implement the `Copy` trait error[E0381]: used binding `ret` isn't initialized --> /home/runner/work/glacier/glacier/ices/83539.rs:8:5 | 6 | let ret; | --- binding declared here but left uninitialized 7 | *x; 8 | ret | ^^^ `ret` used here but it isn't initialized | help: consider assigning a value | 6 | let ret = todo!(); | +++++++++ error: aborting due to 2 previous errors; 1 warning emitted Some errors have detailed explanations: E0381, E0507. For more information about an error, try `rustc --explain E0381`. ============== --- {ices => fixed}/83539.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/83539.rs (100%) diff --git a/ices/83539.rs b/fixed/83539.rs similarity index 100% rename from ices/83539.rs rename to fixed/83539.rs