blob: 507d53dc07c4c9e4d2684db8afee0dfb3be963cf [file] [log] [blame]
error[E0369]: cannot multiply `f64` to `&T`
--> $DIR/trait-resolution-in-overloaded-op.rs:8:7
|
LL | a * b
| - ^ - f64
| |
| &T
|
help: consider further restricting this bound
|
LL | fn foo<T: MyMul<f64, f64> + std::ops::Mul<Output = f64>>(a: &T, b: f64) -> f64 {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0369`.