summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/universal-mismatched-type.stderr
blob: 21da1d087acfb5cf87b01f129977b93631252037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0308]: mismatched types
  --> $DIR/universal-mismatched-type.rs:4:5
   |
LL | fn foo(x: impl Debug) -> String {
   |           ----------     ------ expected `String` because of return type
   |           |
   |           found this type parameter
LL |     x
   |     ^ expected `String`, found type parameter `impl Debug`
   |
   = note:      expected struct `String`
           found type parameter `impl Debug`

error: aborting due to 1 previous error

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