summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const_in_pattern/reject_non_partial_eq.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/const_in_pattern/reject_non_partial_eq.stderr')
-rw-r--r--tests/ui/consts/const_in_pattern/reject_non_partial_eq.stderr8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/consts/const_in_pattern/reject_non_partial_eq.stderr b/tests/ui/consts/const_in_pattern/reject_non_partial_eq.stderr
new file mode 100644
index 000000000..95cfa4a9e
--- /dev/null
+++ b/tests/ui/consts/const_in_pattern/reject_non_partial_eq.stderr
@@ -0,0 +1,8 @@
+error: to use a constant of type `NoPartialEq` in a pattern, `NoPartialEq` must be annotated with `#[derive(PartialEq, Eq)]`
+ --> $DIR/reject_non_partial_eq.rs:28:9
+ |
+LL | NO_PARTIAL_EQ_NONE => println!("NO_PARTIAL_EQ_NONE"),
+ | ^^^^^^^^^^^^^^^^^^
+
+error: aborting due to previous error
+