From aec303b39daa635de37df80619847498f47dde0c Mon Sep 17 00:00:00 2001 From: rustbot Date: Sun, 2 May 2021 12:26:39 +0000 Subject: [PATCH] ices/83466.rs: fixed with errors === stdout === === stderr === warning: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present --> /home/runner/work/glacier/glacier/ices/83466.rs:8:14 | 3 | fn func<'a, U>(self) -> U { | -- the late bound lifetime parameter is introduced here ... 8 | S.func::<'a, dont_crash>() | ^^ | = note: `#[warn(late_bound_lifetime_arguments)]` on by default = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! = note: for more information, see issue #42868 error[E0747]: constant provided when a type was expected --> /home/runner/work/glacier/glacier/ices/83466.rs:8:18 | 8 | S.func::<'a, dont_crash>() | ^^^^^^^^^^ | = help: `dont_crash` is a function item, not a type = help: function item types cannot be named directly error: aborting due to previous error; 1 warning emitted For more information about this error, try `rustc --explain E0747`. ============== --- {ices => fixed}/83466.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/83466.rs (100%) diff --git a/ices/83466.rs b/fixed/83466.rs similarity index 100% rename from ices/83466.rs rename to fixed/83466.rs