2020-10-17 21:59:51 -05:00
|
|
|
error[E0369]: cannot multiply `Thing` by `{integer}`
|
2019-03-27 12:13:09 -05:00
|
|
|
--> $DIR/issue-3820.rs:14:15
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let w = u * 3;
|
2019-03-27 12:13:09 -05:00
|
|
|
| - ^ - {integer}
|
|
|
|
| |
|
|
|
|
| Thing
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2021-09-28 09:48:54 -05:00
|
|
|
note: an implementation of `Mul<_>` might be missing for `Thing`
|
|
|
|
--> $DIR/issue-3820.rs:1:1
|
|
|
|
|
|
|
|
|
LL | struct Thing {
|
|
|
|
| ^^^^^^^^^^^^ must implement `Mul<_>`
|
2022-12-12 05:55:46 -06:00
|
|
|
note: the trait `Mul` must be implemented
|
2021-09-28 09:48:54 -05:00
|
|
|
--> $SRC_DIR/core/src/ops/arith.rs:LL:COL
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|