summaryrefslogtreecommitdiff
path: root/tests/ui/typeck/issue-91328.stderr
diff options
context:
space:
mode:
authorAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-05 09:13:28 +0100
committerAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-11 09:32:08 +0000
commitcf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch)
tree40a88d9a46aaf3e8870676eb2538378b75a263eb /tests/ui/typeck/issue-91328.stderr
parentca855e6e42787ecd062d81d53336fe6788ef51a9 (diff)
downloadrust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz
Move /src/test to /tests
Diffstat (limited to 'tests/ui/typeck/issue-91328.stderr')
-rw-r--r--tests/ui/typeck/issue-91328.stderr39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/ui/typeck/issue-91328.stderr b/tests/ui/typeck/issue-91328.stderr
new file mode 100644
index 00000000000..f2f407bcaff
--- /dev/null
+++ b/tests/ui/typeck/issue-91328.stderr
@@ -0,0 +1,39 @@
+error[E0529]: expected an array or slice, found `Vec<i32>`
+ --> $DIR/issue-91328.rs:10:12
+ |
+LL | match r {
+ | - help: consider using `as_deref` here: `r.as_deref()`
+LL |
+LL | Ok([a, b]) => a + b,
+ | ^^^^^^ pattern cannot match with input type `Vec<i32>`
+
+error[E0529]: expected an array or slice, found `Vec<i32>`
+ --> $DIR/issue-91328.rs:20:14
+ |
+LL | match o {
+ | - help: consider using `as_deref` here: `o.as_deref()`
+LL |
+LL | Some([a, b]) => a + b,
+ | ^^^^^^ pattern cannot match with input type `Vec<i32>`
+
+error[E0529]: expected an array or slice, found `Vec<i32>`
+ --> $DIR/issue-91328.rs:30:9
+ |
+LL | match v {
+ | - help: consider slicing here: `v[..]`
+LL |
+LL | [a, b] => a + b,
+ | ^^^^^^ pattern cannot match with input type `Vec<i32>`
+
+error[E0529]: expected an array or slice, found `Box<[i32; 2]>`
+ --> $DIR/issue-91328.rs:40:14
+ |
+LL | match a {
+ | - help: consider using `as_deref` here: `a.as_deref()`
+LL |
+LL | Some([a, b]) => a + b,
+ | ^^^^^^ pattern cannot match with input type `Box<[i32; 2]>`
+
+error: aborting due to 4 previous errors
+
+For more information about this error, try `rustc --explain E0529`.