From 48ed935e2acf0adaf51df112b1cb6d5e13746c15 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sun, 15 Nov 2020 12:16:10 +0000 Subject: [PATCH] ices/69239.rs: fixed with errors === stdout === === stderr === error[E0658]: const generics are unstable --> /home/runner/work/glacier/glacier/ices/69239.rs:1:19 | 1 | trait Trait {} | ^ | = note: see issue #74878 for more information = help: add `#![feature(min_const_generics)]` to the crate attributes to enable error[E0658]: use of unstable library feature 'core_intrinsics': intrinsics are unlikely to ever be stabilized, instead they should be used through stabilized interfaces in the rest of the standard library --> /home/runner/work/glacier/glacier/ices/69239.rs:5:15 | 5 | T: Trait<{std::intrinsics::type_name::()}> | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(core_intrinsics)]` to the crate attributes to enable error: `std::intrinsics::type_name` is not yet stable as a const fn --> /home/runner/work/glacier/glacier/ices/69239.rs:5:15 | 5 | T: Trait<{std::intrinsics::type_name::()}> | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: add `#![feature(const_type_name)]` to the crate attributes to enable error: aborting due to 3 previous errors For more information about this error, try `rustc --explain E0658`. ============== --- {ices => fixed}/69239.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/69239.rs (100%) diff --git a/ices/69239.rs b/fixed/69239.rs similarity index 100% rename from ices/69239.rs rename to fixed/69239.rs