// #12402 Operator overloading only considers the method name, not which trait is implemented trait MyMul { fn mul(&self, rhs: &Rhs) -> Res; } fn foo>(a: &T, b: f64) -> f64 { a * b //~ ERROR cannot multiply `&T` by `f64` } fn main() {}