mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
276 B
Rust
12 lines
276 B
Rust
// #12402 Operator overloading only considers the method name, not which trait is implemented
|
|
|
|
trait MyMul<Rhs, Res> {
|
|
fn mul(&self, rhs: &Rhs) -> Res;
|
|
}
|
|
|
|
fn foo<T: MyMul<f64, f64>>(a: &T, b: f64) -> f64 {
|
|
a * b //~ ERROR cannot multiply `&T` by `f64`
|
|
}
|
|
|
|
fn main() {}
|