summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/usefulness/doc-hidden-non-exhaustive.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/pattern/usefulness/doc-hidden-non-exhaustive.rs')
-rw-r--r--src/test/ui/pattern/usefulness/doc-hidden-non-exhaustive.rs43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/test/ui/pattern/usefulness/doc-hidden-non-exhaustive.rs b/src/test/ui/pattern/usefulness/doc-hidden-non-exhaustive.rs
deleted file mode 100644
index 5d4181a30..000000000
--- a/src/test/ui/pattern/usefulness/doc-hidden-non-exhaustive.rs
+++ /dev/null
@@ -1,43 +0,0 @@
-// aux-build:hidden.rs
-
-extern crate hidden;
-
-use hidden::HiddenEnum;
-
-enum InCrate {
- A,
- B,
- #[doc(hidden)]
- C,
-}
-
-fn main() {
- match HiddenEnum::A {
- HiddenEnum::A => {}
- HiddenEnum::B => {}
- }
- //~^^^^ non-exhaustive patterns: `_` not covered
-
- match HiddenEnum::A {
- HiddenEnum::A => {}
- HiddenEnum::C => {}
- }
- //~^^^^ non-exhaustive patterns: `HiddenEnum::B` not covered
-
- match HiddenEnum::A {
- HiddenEnum::A => {}
- }
- //~^^^ non-exhaustive patterns: `HiddenEnum::B` and `_` not covered
-
- match None {
- None => {}
- Some(HiddenEnum::A) => {}
- }
- //~^^^^ non-exhaustive patterns: `Some(HiddenEnum::B)` and `Some(_)` not covered
-
- match InCrate::A {
- InCrate::A => {}
- InCrate::B => {}
- }
- //~^^^^ non-exhaustive patterns: `InCrate::C` not covered
-}