blob: 84f8f9bd14786845c21a90437004b3c0e3795180 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
error[E0369]: cannot multiply `Thing` by `{integer}`
--> $DIR/issue-3820.rs:14:15
|
LL | let w = u * 3;
| - ^ - {integer}
| |
| 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`.
|