summaryrefslogtreecommitdiffstats
path: root/tests/ui/binop/issue-3820.stderr
blob: c313ed6037f3ab043aef865989ef6725449c7fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0369]: cannot multiply `Thing` by `{integer}`
  --> $DIR/issue-3820.rs:14:15
   |
LL |     let w = u * 3;
   |             - ^ - {integer}
   |             |
   |             Thing
   |
note: an implementation of `Mul<_>` might be missing for `Thing`
  --> $DIR/issue-3820.rs:1:1
   |
LL | struct Thing {
   | ^^^^^^^^^^^^ must implement `Mul<_>`
note: the trait `Mul` must be implemented
  --> $SRC_DIR/core/src/ops/arith.rs:LL:COL

error: aborting due to previous error

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