summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-check/point-at-inference.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/type/type-check/point-at-inference.stderr')
-rw-r--r--tests/ui/type/type-check/point-at-inference.stderr4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ui/type/type-check/point-at-inference.stderr b/tests/ui/type/type-check/point-at-inference.stderr
index a76b4f90c..5fc94d4d1 100644
--- a/tests/ui/type/type-check/point-at-inference.stderr
+++ b/tests/ui/type/type-check/point-at-inference.stderr
@@ -2,7 +2,9 @@ error[E0308]: mismatched types
--> $DIR/point-at-inference.rs:12:9
|
LL | foo.push(i);
- | - this is of type `&{integer}`, which causes `foo` to be inferred as `Vec<&{integer}>`
+ | --- - this argument has type `&{integer}`...
+ | |
+ | ... which causes `foo` to have type `Vec<&{integer}>`
...
LL | bar(foo);
| --- ^^^ expected `Vec<i32>`, found `Vec<&{integer}>`