From f3698f759ef1fbfc5928e3378545eb8448c8fb39 Mon Sep 17 00:00:00 2001 From: rustbot Date: Thu, 10 Aug 2023 03:07:35 +0000 Subject: [PATCH] ices/108952.rs: fixed with errors === stdout === === stderr === error[E0106]: missing lifetime specifier --> /home/runner/work/glacier/glacier/ices/108952.rs:6:25 | 6 | struct UwU<'b, const T: LifetimeGeneric>(&'b ()); | ^^^^^^^^^^^^^^^ expected named lifetime parameter error[E0741]: `LifetimeGeneric<'_>` must implement `ConstParamTy` to be used as the type of a const generic parameter --> /home/runner/work/glacier/glacier/ices/108952.rs:6:25 | 6 | struct UwU<'b, const T: LifetimeGeneric>(&'b ()); | ^^^^^^^^^^^^^^^ | help: add `#[derive(ConstParamTy, PartialEq, Eq)]` to the struct | 4 + #[derive(ConstParamTy, PartialEq, Eq)] 5 | struct LifetimeGeneric<'a>(&'a ()); | error: aborting due to 2 previous errors Some errors have detailed explanations: E0106, E0741. For more information about an error, try `rustc --explain E0106`. ============== --- {ices => fixed}/108952.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/108952.rs (100%) diff --git a/ices/108952.rs b/fixed/108952.rs similarity index 100% rename from ices/108952.rs rename to fixed/108952.rs