forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#55837 - Centril:spökdata-skall-vara-struktu…
…rellt-matchbar, r=eddyb Make PhantomData #[structural_match] fixes rust-lang#55028 This makes `PhantomData<T>` structurally matchable, irrespective of whether `T` is, per the discussion on this week's language team meeting (the general consensus was that this was a bug-fix). All types containing `PhantomData<T>` and which used `#[derive(PartialEq, Eq)]` and were previously not `#[structural_match]` only because of `PhantomData<T>` will now be `#[structural_match]`. r? @nikomatsakis
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
src/test/ui/rfc1445/phantom-data-is-structurally-matchable.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
} |