summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/deep-match.stderr
blob: 8ec30239ea8d784250f6ba39aba6d80f348442e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0053]: method `bar` has an incompatible return type for trait
  --> $DIR/deep-match.rs:8:17
   |
LL |     fn bar() -> i32 {
   |                 ^^^
   |                 |
   |                 expected `Wrapper<_>`, found `i32`
   |                 return type in trait
   |
   = note: expected struct `Wrapper<_>`
                found type `i32`

error: aborting due to 1 previous error

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