summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-params-in-different-spaces-2.stderr
blob: 53610985f31da73e6da9d56cf90e31bc596c1a95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error[E0277]: the trait bound `Self: Tr<U>` is not satisfied
  --> $DIR/type-params-in-different-spaces-2.rs:10:9
   |
LL |         Tr::op(u)
   |         ^^^^^^ the trait `Tr<U>` is not implemented for `Self`
   |
help: consider further restricting `Self`
   |
LL |     fn test<U>(u: U) -> Self where Self: Tr<U> {
   |                              +++++++++++++++++

error[E0277]: the trait bound `Self: Tr<U>` is not satisfied
  --> $DIR/type-params-in-different-spaces-2.rs:16:9
   |
LL |         Tr::op(u)
   |         ^^^^^^ the trait `Tr<U>` is not implemented for `Self`
   |
help: consider further restricting `Self`
   |
LL |     fn test<U>(u: U) -> Self where Self: Tr<U> {
   |                              +++++++++++++++++

error: aborting due to 2 previous errors

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