about summary refs log tree commit diff
path: root/tests/ui/consts/const-pattern-variant.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/const-pattern-variant.rs')
-rw-r--r--tests/ui/consts/const-pattern-variant.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/ui/consts/const-pattern-variant.rs b/tests/ui/consts/const-pattern-variant.rs
new file mode 100644
index 00000000000..80f749ed72d
--- /dev/null
+++ b/tests/ui/consts/const-pattern-variant.rs
@@ -0,0 +1,29 @@
+// run-pass
+#![allow(unreachable_patterns)]
+
+#[derive(PartialEq, Eq)]
+enum Cake {
+    BlackForest,
+    Marmor,
+}
+use Cake::*;
+
+const BOO: (Cake, Cake) = (Marmor, BlackForest);
+const FOO: Cake = BOO.1;
+
+const fn foo() -> Cake {
+    Marmor
+}
+
+const WORKS: Cake = Marmor;
+
+const GOO: Cake = foo();
+
+fn main() {
+    match BlackForest {
+        FOO => println!("hi"),
+        GOO => println!("meh"),
+        WORKS => println!("möp"),
+        _ => println!("bye"),
+    }
+}