about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAshley Mannix <ashleymannix@live.com.au>2020-07-28 13:33:08 +1000
committerAshley Mannix <ashleymannix@live.com.au>2020-07-28 13:33:08 +1000
commita99d2cbfe7072218c67fbfe1fda2ea55f46c46f2 (patch)
treed2445fb6af14bcdac714185249a0e489d0d177db /src
parente3856616ee2a894c7811a7017d98fafa7ba84dd8 (diff)
downloadrust-a99d2cbfe7072218c67fbfe1fda2ea55f46c46f2.tar.gz
rust-a99d2cbfe7072218c67fbfe1fda2ea55f46c46f2.zip
remove unstable const_type_id feature
Diffstat (limited to 'src')
-rw-r--r--src/test/ui/consts/issue-73976-monomorphic.rs1
-rw-r--r--src/test/ui/consts/issue-73976-polymorphic.rs1
2 files changed, 0 insertions, 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};