mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-09 16:37:36 +00:00
make PhantomData #[structural_match].
This commit is contained in:
parent
36a50c29f6
commit
5e7b7f2ae6
@ -129,6 +129,7 @@
|
|||||||
#![feature(const_transmute)]
|
#![feature(const_transmute)]
|
||||||
#![feature(reverse_bits)]
|
#![feature(reverse_bits)]
|
||||||
#![feature(non_exhaustive)]
|
#![feature(non_exhaustive)]
|
||||||
|
#![feature(structural_match)]
|
||||||
|
|
||||||
#[prelude_import]
|
#[prelude_import]
|
||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
|
@ -578,6 +578,7 @@ macro_rules! impls{
|
|||||||
///
|
///
|
||||||
/// [drop check]: ../../nomicon/dropck.html
|
/// [drop check]: ../../nomicon/dropck.html
|
||||||
#[lang = "phantom_data"]
|
#[lang = "phantom_data"]
|
||||||
|
#[structural_match]
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[stable(feature = "rust1", since = "1.0.0")]
|
||||||
pub struct PhantomData<T:?Sized>;
|
pub struct PhantomData<T:?Sized>;
|
||||||
|
|
||||||
|
@ -0,0 +1,53 @@
|
|||||||
|
// run-pass
|
||||||
|
|
||||||
|
// This file checks that `PhantomData` is considered structurally matchable.
|
||||||
|
|
||||||
|
use std::marker::PhantomData;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let mut count = 0;
|
||||||
|
|
||||||
|
// A type which is not structurally matchable:
|
||||||
|
struct NotSM;
|
||||||
|
|
||||||
|
// And one that is:
|
||||||
|
#[derive(PartialEq, Eq)]
|
||||||
|
struct SM;
|
||||||
|
|
||||||
|
// Check that SM is #[structural_match]:
|
||||||
|
const CSM: SM = SM;
|
||||||
|
match SM {
|
||||||
|
CSM => count += 1,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Check that PhantomData<T> is #[structural_match] even if T is not.
|
||||||
|
const CPD1: PhantomData<NotSM> = PhantomData;
|
||||||
|
match PhantomData {
|
||||||
|
CPD1 => count += 1,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Check that PhantomData<T> is #[structural_match] when T is.
|
||||||
|
const CPD2: PhantomData<SM> = PhantomData;
|
||||||
|
match PhantomData {
|
||||||
|
CPD2 => count += 1,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Check that a type which has a PhantomData is `#[structural_match]`.
|
||||||
|
#[derive(PartialEq, Eq, Default)]
|
||||||
|
struct Foo {
|
||||||
|
alpha: PhantomData<NotSM>,
|
||||||
|
beta: PhantomData<SM>,
|
||||||
|
}
|
||||||
|
|
||||||
|
const CFOO: Foo = Foo {
|
||||||
|
alpha: PhantomData,
|
||||||
|
beta: PhantomData,
|
||||||
|
};
|
||||||
|
|
||||||
|
match Foo::default() {
|
||||||
|
CFOO => count += 1,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Final count must be 4 now if all
|
||||||
|
assert_eq!(count, 4);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user