summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-annotation-needed.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/type/type-annotation-needed.stderr (renamed from src/test/ui/type/type-annotation-needed.stderr)2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/type/type-annotation-needed.stderr b/tests/ui/type/type-annotation-needed.stderr
index 4af4c22f7..87bba3166 100644
--- a/src/test/ui/type/type-annotation-needed.stderr
+++ b/tests/ui/type/type-annotation-needed.stderr
@@ -10,7 +10,7 @@ note: required by a bound in `foo`
|
LL | fn foo<T: Into<String>>(x: i32) {}
| ^^^^^^^^^^^^ required by this bound in `foo`
-help: consider specifying the type argument in the function call
+help: consider specifying the generic argument
|
LL | foo::<T>(42);
| +++++