2018-07-15 16:11:54 -05:00
|
|
|
error[E0369]: binary operation `*` cannot be applied to type `Thing`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-3820.rs:14:13
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | let w = u * 3; //~ ERROR binary operation `*` cannot be applied to type `Thing`
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: an implementation of `std::ops::Mul` might be missing for `Thing`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|