about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-03-24 21:52:22 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-03-24 22:58:15 +0300
commit733230530522d9f535b95d5bc304b11a94e2239c (patch)
treed6b5a3d068b815a6409917781c1e5368acd231e7 /src/libcore
parent2dcf54f564c6d8bbf48960fb9aaec88a0e2e062a (diff)
downloadrust-733230530522d9f535b95d5bc304b11a94e2239c.tar.gz
rust-733230530522d9f535b95d5bc304b11a94e2239c.zip
Remove attribute `#[structural_match]` and any references to it
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/lib.rs1
-rw-r--r--src/libcore/marker.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index 94fc2fd357a..7182df74b5d 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -132,7 +132,6 @@
 #![feature(f16c_target_feature)]
 #![feature(hexagon_target_feature)]
 #![feature(const_transmute)]
-#![feature(structural_match)]
 #![feature(abi_unadjusted)]
 #![feature(adx_target_feature)]
 #![feature(maybe_uninit_slice)]
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index 2b908f07af8..61055845d6d 100644
--- a/src/libcore/marker.rs
+++ b/src/libcore/marker.rs
@@ -660,7 +660,6 @@ macro_rules! impls {
 ///
 /// [drop check]: ../../nomicon/dropck.html
 #[lang = "phantom_data"]
-#[structural_match]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct PhantomData<T: ?Sized>;