From 18b85e0d9a751624b59d4b3bd45baff54ab2b2c6 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sat, 6 Feb 2021 12:21:17 +0000 Subject: [PATCH] ices/68650.rs: fixed with errors === stdout === === stderr === warning: the feature `generic_associated_types` is incomplete and may not be safe to use and/or cause compiler crashes --> /home/runner/work/glacier/glacier/ices/68650.rs:1:12 | 1 | #![feature(generic_associated_types)] | ^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(incomplete_features)]` on by default = note: see issue #44265 for more information error[E0107]: missing generics for associated type `Fun::F` --> /home/runner/work/glacier/glacier/ices/68650.rs:4:10 | 4 | type F<'a>; | ^ expected 1 lifetime argument | note: associated type defined here, with 1 lifetime parameter: `'a` --> /home/runner/work/glacier/glacier/ices/68650.rs:4:10 | 4 | type F<'a>; | ^ -- help: use angle brackets to add missing lifetime argument | 4 | type F<'a><'a>; | ^^^^ error: aborting due to previous error; 1 warning emitted For more information about this error, try `rustc --explain E0107`. ============== --- {ices => fixed}/68650.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/68650.rs (100%) diff --git a/ices/68650.rs b/fixed/68650.rs similarity index 100% rename from ices/68650.rs rename to fixed/68650.rs