1error[E0308]: mismatched types
2  --> $DIR/terr-sorts.rs:10:14
3   |
4LL |     want_foo(b);
5   |              ^ expected struct `Foo`, found struct `Box`
6   |
7   = note: expected struct `Foo`
8              found struct `Box<Foo>`
9help: try dereferencing the `Box`
10   |
11LL |     want_foo(*b);
12   |              +
13
14error: aborting due to previous error
15
16For more information about this error, try `rustc --explain E0308`.
17