]> git.lizzy.rs Git - rust.git/blob - tests/ui/type-alias-impl-trait/multiple-def-uses-in-one-fn3.stderr
Rollup merge of #106323 - starkat99:stabilize-f16c_target_feature, r=petrochenkov
[rust.git] / tests / ui / type-alias-impl-trait / multiple-def-uses-in-one-fn3.stderr
1 error[E0308]: mismatched types
2   --> $DIR/multiple-def-uses-in-one-fn3.rs:14:9
3    |
4 LL | fn g<A: ToString + Clone, B: ToString + Clone>(a: A, b: B) -> (X<A, B>, X<A, B>) {
5    |      -                    - found type parameter
6    |      |
7    |      expected type parameter
8 LL |     (a, b)
9    |         ^ expected type parameter `A`, found type parameter `B`
10    |
11    = note: expected type parameter `A`
12               found type parameter `B`
13    = note: a type parameter was expected, but a different one was found; you might be missing a type parameter or trait bound
14    = note: for more information, visit https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0308`.