From e686c6a578b6af4c21d3e78d2f7db88979f3cd39 Mon Sep 17 00:00:00 2001 From: rustbot Date: Tue, 9 May 2023 03:07:19 +0000 Subject: [PATCH] ices/109790.rs: fixed with no errors === stdout === === stderr === warning: the feature `inherent_associated_types` is incomplete and may not be safe to use and/or cause compiler crashes --> /home/runner/work/glacier/glacier/ices/109790.rs:1:12 | 1 | #![feature(inherent_associated_types)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: see issue #8995 for more information = note: `#[warn(incomplete_features)]` on by default warning: struct `Foo` is never constructed --> /home/runner/work/glacier/glacier/ices/109790.rs:3:8 | 3 | struct Foo(T); | ^^^ | = note: `#[warn(dead_code)]` on by default warning: associated type `Assoc` is never used --> /home/runner/work/glacier/glacier/ices/109790.rs:6:10 | 5 | impl<'a> Foo { | ------------------------ associated type in this implementation 6 | type Assoc = &'a (); | ^^^^^ warning: function `bar` is never used --> /home/runner/work/glacier/glacier/ices/109790.rs:12:4 | 12 | fn bar(_: for<'a> fn(Foo::Assoc)) {} | ^^^ warning: 4 warnings emitted ============== --- {ices => fixed}/109790.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/109790.rs (100%) diff --git a/ices/109790.rs b/fixed/109790.rs similarity index 100% rename from ices/109790.rs rename to fixed/109790.rs