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, 43 insertions, 0 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
new file mode 100644
index 000000000..d968c48fb
--- /dev/null
+++ b/src/test/ui/pattern/usefulness/doc-hidden-non-exhaustive.rs
@@ -0,0 +1,43 @@
+// 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: `B` not covered
+
+ match HiddenEnum::A {
+ HiddenEnum::A => {}
+ }
+ //~^^^ non-exhaustive patterns: `B` and `_` not covered
+
+ match None {
+ None => {}
+ Some(HiddenEnum::A) => {}
+ }
+ //~^^^^ non-exhaustive patterns: `Some(B)` and `Some(_)` not covered
+
+ match InCrate::A {
+ InCrate::A => {}
+ InCrate::B => {}
+ }
+ //~^^^^ non-exhaustive patterns: `C` not covered
+}