From a99d2cbfe7072218c67fbfe1fda2ea55f46c46f2 Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Tue, 28 Jul 2020 13:33:08 +1000 Subject: [PATCH] remove unstable const_type_id feature --- src/test/ui/consts/issue-73976-monomorphic.rs | 1 - src/test/ui/consts/issue-73976-polymorphic.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/test/ui/consts/issue-73976-monomorphic.rs b/src/test/ui/consts/issue-73976-monomorphic.rs index 7706a97f23b..1db0fdc87c3 100644 --- a/src/test/ui/consts/issue-73976-monomorphic.rs +++ b/src/test/ui/consts/issue-73976-monomorphic.rs @@ -5,7 +5,6 @@ // will be properly rejected. This test will ensure that monomorphic use of these // would not be wrongly rejected in patterns. -#![feature(const_type_id)] #![feature(const_type_name)] use std::any::{self, TypeId}; diff --git a/src/test/ui/consts/issue-73976-polymorphic.rs b/src/test/ui/consts/issue-73976-polymorphic.rs index 28b84518719..7cf20296062 100644 --- a/src/test/ui/consts/issue-73976-polymorphic.rs +++ b/src/test/ui/consts/issue-73976-polymorphic.rs @@ -5,7 +5,6 @@ // This test case should either run-pass or be rejected at compile time. // Currently we just disallow this usage and require pattern is monomorphic. -#![feature(const_type_id)] #![feature(const_type_name)] use std::any::{self, TypeId};