From 4977707de605a147e1a42c230f536fbc5cca866c Mon Sep 17 00:00:00 2001 From: rustbot Date: Mon, 10 Apr 2023 03:06:58 +0000 Subject: [PATCH] ices/104631.rs: fixed with errors === stdout === === stderr === warning: the feature `dyn_star` is incomplete and may not be safe to use and/or cause compiler crashes --> /home/runner/work/glacier/glacier/ices/104631.rs:3:12 | 3 | #![feature(dyn_star)] | ^^^^^^^^ | = note: see issue #102425 for more information = note: `#[warn(incomplete_features)]` on by default error[E0277]: `AlignedUsize` needs to have the same ABI as a pointer --> /home/runner/work/glacier/glacier/ices/104631.rs:14:13 | 14 | let x = AlignedUsize(12) as dyn* Debug; | ^^^^^^^^^^^^^^^^ `AlignedUsize` needs to be a pointer-like type | = help: the trait `PointerLike` is not implemented for `AlignedUsize` error: aborting due to previous error; 1 warning emitted For more information about this error, try `rustc --explain E0277`. ============== --- {ices => fixed}/104631.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/104631.rs (100%) diff --git a/ices/104631.rs b/fixed/104631.rs similarity index 100% rename from ices/104631.rs rename to fixed/104631.rs