summaryrefslogtreecommitdiffstats
path: root/tests/ui/terr-sorts.stderr
blob: 5a61a2fab12658fe91122d636899345189423670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0308]: mismatched types
  --> $DIR/terr-sorts.rs:10:14
   |
LL |     want_foo(b);
   |     -------- ^ expected struct `Foo`, found struct `Box`
   |     |
   |     arguments to this function are incorrect
   |
   = note: expected struct `Foo`
              found struct `Box<Foo>`
note: function defined here
  --> $DIR/terr-sorts.rs:8:4
   |
LL | fn want_foo(f: Foo) {}
   |    ^^^^^^^^ ------
help: consider unboxing the value
   |
LL |     want_foo(*b);
   |              +

error: aborting due to previous error

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