summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-check/cannot_infer_local_or_vec.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/type/type-check/cannot_infer_local_or_vec.stderr')
-rw-r--r--tests/ui/type/type-check/cannot_infer_local_or_vec.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/type/type-check/cannot_infer_local_or_vec.stderr b/tests/ui/type/type-check/cannot_infer_local_or_vec.stderr
index b63d2a3b6..09c4b2053 100644
--- a/tests/ui/type/type-check/cannot_infer_local_or_vec.stderr
+++ b/tests/ui/type/type-check/cannot_infer_local_or_vec.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.rs:2:9
|
LL | let x = vec![];
| ^
|
-help: consider giving `x` an explicit type, where the type for type parameter `T` is specified
+help: consider giving `x` an explicit type, where the placeholders `_` are specified
|
-LL | let x: Vec<T> = vec![];
+LL | let x: Vec<_> = vec![];
| ++++++++
error: aborting due to previous error