summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-check/cannot_infer_local_or_vec_in_tuples.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/type/type-check/cannot_infer_local_or_vec_in_tuples.stderr')
-rw-r--r--tests/ui/type/type-check/cannot_infer_local_or_vec_in_tuples.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/type/type-check/cannot_infer_local_or_vec_in_tuples.stderr b/tests/ui/type/type-check/cannot_infer_local_or_vec_in_tuples.stderr
index e544b3695..1fa253052 100644
--- a/tests/ui/type/type-check/cannot_infer_local_or_vec_in_tuples.stderr
+++ b/tests/ui/type/type-check/cannot_infer_local_or_vec_in_tuples.stderr
@@ -1,12 +1,12 @@
-error[E0282]: type annotations needed for `(Vec<T>,)`
+error[E0282]: type annotations needed for `(Vec<_>,)`
--> $DIR/cannot_infer_local_or_vec_in_tuples.rs:2:9
|
LL | let (x, ) = (vec![], );
| ^^^^^ ---------- type must be known at this point
|
-help: consider giving this pattern a type, where the type for type parameter `T` is specified
+help: consider giving this pattern a type, where the placeholders `_` are specified
|
-LL | let (x, ): (Vec<T>,) = (vec![], );
+LL | let (x, ): (Vec<_>,) = (vec![], );
| +++++++++++
error: aborting due to previous error