]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/universal-two-impl-traits.stderr
Merge commit '953f024793dab92745fee9cd2c4dee6a60451771' into clippyup
[rust.git] / src / test / ui / impl-trait / universal-two-impl-traits.stderr
1 error[E0308]: mismatched types
2   --> $DIR/universal-two-impl-traits.rs:5:9
3    |
4 LL | fn foo(x: impl Debug, y: impl Debug) -> String {
5    |           ----------     ---------- found type parameter
6    |           |
7    |           expected type parameter
8 LL |     let mut a = x;
9 LL |     a = y;
10    |         ^ expected type parameter `impl Debug`, found a different type parameter `impl Debug`
11    |
12    = note: expected type parameter `impl Debug` (type parameter `impl Debug`)
13               found type parameter `impl Debug` (type parameter `impl Debug`)
14    = note: a type parameter was expected, but a different one was found; you might be missing a type parameter or trait bound
15    = note: for more information, visit https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0308`.