Files
rust/src/test/ui/issues/issue-3820.stderr

14 lines
378 B
Plaintext
Raw Normal View History

2019-12-10 22:03:13 +01:00
error[E0369]: cannot multiply `{integer}` to `Thing`
--> $DIR/issue-3820.rs:14:15
2018-07-15 14:11:54 -07:00
|
2019-03-09 15:03:44 +03:00
LL | let w = u * 3;
| - ^ - {integer}
| |
| Thing
2018-07-15 14:11:54 -07:00
|
= 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`.