2018-08-08 07:28:26 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/terr-in-field.rs:23:14
|
|
|
|
|
|
|
|
|
LL | want_foo(b); //~ ERROR mismatched types
|
2018-12-16 21:21:47 -06:00
|
|
|
| ^ expected struct `Foo`, found struct `Bar`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
= note: expected type `Foo`
|
|
|
|
found type `Bar`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|