summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-105946.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/typeck/issue-105946.stderr')
-rw-r--r--tests/ui/typeck/issue-105946.stderr5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/ui/typeck/issue-105946.stderr b/tests/ui/typeck/issue-105946.stderr
index 26c3b7fbc..2220271e5 100644
--- a/tests/ui/typeck/issue-105946.stderr
+++ b/tests/ui/typeck/issue-105946.stderr
@@ -3,6 +3,11 @@ error[E0425]: cannot find value `_y` in this scope
|
LL | let [_y..] = [Box::new(1), Box::new(2)];
| ^^ not found in this scope
+ |
+help: if you meant to collect the rest of the slice in `_y`, use the at operator
+ |
+LL | let [_y @ ..] = [Box::new(1), Box::new(2)];
+ | +
error[E0658]: `X..` patterns in slices are experimental
--> $DIR/issue-105946.rs:6:10