summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/issue-115599.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pattern/issue-115599.stderr')
-rw-r--r--tests/ui/pattern/issue-115599.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/pattern/issue-115599.stderr b/tests/ui/pattern/issue-115599.stderr
new file mode 100644
index 000000000..e6cb6c1dd
--- /dev/null
+++ b/tests/ui/pattern/issue-115599.stderr
@@ -0,0 +1,11 @@
+error: to use a constant of type `Vec<u8>` in a pattern, `Vec<u8>` must be annotated with `#[derive(PartialEq, Eq)]`
+ --> $DIR/issue-115599.rs:5:12
+ |
+LL | if let CONST_STRING = empty_str {}
+ | ^^^^^^^^^^^^
+ |
+ = note: the traits must be derived, manual `impl`s are not sufficient
+ = note: see https://doc.rust-lang.org/stable/std/marker/trait.StructuralEq.html for details
+
+error: aborting due to previous error
+