14 lines
367 B
Plaintext
14 lines
367 B
Plaintext
error[E0369]: binary operation `*` cannot be applied to type `&T`
|
|
--> $DIR/trait-resolution-in-overloaded-op.rs:8:7
|
|
|
|
|
LL | a * b
|
|
| - ^ - f64
|
|
| |
|
|
| &T
|
|
|
|
|
= note: an implementation of `std::ops::Mul` might be missing for `&T`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|