From 20891e8b0c1cde00126fff92a0e87d005ae8aca8 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sun, 4 Jun 2023 03:18:26 +0000 Subject: [PATCH] ices/109869.rs: fixed with errors === stdout === === stderr === error[E0308]: mismatched types --> /home/runner/work/glacier/glacier/ices/109869.rs:12:9 | 11 | fn from((from, ()): Spanned) -> Self { | ---- expected `(dyn Span + 'static)` because of return type 12 | (T::from(from), ()) | ^^^^^^^^^^^^^^^^^^^ expected `dyn Span`, found `(T, ())` | = note: expected trait object `(dyn Span + 'static)` found tuple `(T, ())` help: call `Into::into` on this expression to convert `(T, ())` into `(dyn Span + 'static)` | 12 | (T::from(from), ()).into() | +++++++ error: aborting due to previous error For more information about this error, try `rustc --explain E0308`. ============== --- {ices => fixed}/109869.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/109869.rs (100%) diff --git a/ices/109869.rs b/fixed/109869.rs similarity index 100% rename from ices/109869.rs rename to fixed/109869.rs