summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/restrict-type-not-param.stderr
blob: e7d9c5ecbe48208a720fac6deb23cfff4778b96a (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
26
error[E0369]: cannot add `T` to `Wrapper<T>`
  --> $DIR/restrict-type-not-param.rs:8:7
   |
LL |     a + b
   |     - ^ - T
   |     |
   |     Wrapper<T>
   |
note: an implementation of `Add<_>` might be missing for `Wrapper<T>`
  --> $DIR/restrict-type-not-param.rs:3:1
   |
LL | struct Wrapper<T>(T);
   | ^^^^^^^^^^^^^^^^^ must implement `Add<_>`
note: the following trait must be implemented
  --> $SRC_DIR/core/src/ops/arith.rs:LL:COL
   |
LL | pub trait Add<Rhs = Self> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider introducing a `where` clause, but there might be an alternative better way to express this requirement
   |
LL | fn qux<T>(a: Wrapper<T>, b: T) -> T where Wrapper<T>: Add<T, Output = T> {
   |                                     ++++++++++++++++++++++++++++++++++++

error: aborting due to previous error

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