summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/deep-match.stderr
blob: 3eba419c0a3fd31f1796beff51de198f132b91d9 (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: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`.