mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
62ba3e70a1
The previous output was unintuitive to users.
16 lines
468 B
Plaintext
16 lines
468 B
Plaintext
error[E0053]: method `bar` has an incompatible return type for trait
|
|
--> $DIR/deep-match.rs:11:17
|
|
|
|
|
LL | fn bar() -> i32 { 0 }
|
|
| ^^^
|
|
| |
|
|
| expected `Wrapper<_>`, found `i32`
|
|
| return type in trait
|
|
|
|
|
= note: expected struct `Wrapper<_>`
|
|
found type `i32`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0053`.
|