-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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 #63067 - JohnTitor:test-for-50900, r=Centril
Add test for issue-50900 Closes #50900
- Loading branch information
Showing
2 changed files
with
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#[derive(PartialEq, Eq)] | ||
pub struct Tag(pub Context, pub u16); | ||
|
||
#[derive(PartialEq, Eq)] | ||
pub enum Context { | ||
Tiff, | ||
Exif, | ||
} | ||
|
||
impl Tag { | ||
const ExifIFDPointer: Tag = Tag(Context::Tiff, 34665); | ||
} | ||
|
||
fn main() { | ||
match Tag::ExifIFDPointer { | ||
//~^ ERROR: non-exhaustive patterns: `Tag(Exif, _)` not covered | ||
Tag::ExifIFDPointer => {} | ||
} | ||
} |
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,14 @@ | ||
error[E0004]: non-exhaustive patterns: `Tag(Exif, _)` not covered | ||
--> $DIR/issue-50900.rs:15:11 | ||
| | ||
LL | pub struct Tag(pub Context, pub u16); | ||
| ------------------------------------- `Tag` defined here | ||
... | ||
LL | match Tag::ExifIFDPointer { | ||
| ^^^^^^^^^^^^^^^^^^^ pattern `Tag(Exif, _)` not covered | ||
| | ||
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0004`. |