summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-check/point-at-inference.stderr
blob: a76b4f90c734b491ee5a9ac93c14efb884b1ce43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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}>`
...
LL |     bar(foo);
   |     --- ^^^ expected `Vec<i32>`, found `Vec<&{integer}>`
   |     |
   |     arguments to this function are incorrect
   |
   = note: expected struct `Vec<i32>`
              found struct `Vec<&{integer}>`
note: function defined here
  --> $DIR/point-at-inference.rs:2:4
   |
LL | fn bar(_: Vec<i32>) {}
   |    ^^^ -----------
help: consider dereferencing the borrow
   |
LL |         foo.push(*i);
   |                  +

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.