mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
266 B
Rust
18 lines
266 B
Rust
use std::ops::Add;
|
|
|
|
trait Scalar {}
|
|
impl Scalar for f64 {}
|
|
|
|
struct Bob;
|
|
|
|
impl<RHS: Scalar> Add <RHS> for Bob {
|
|
type Output = Bob;
|
|
fn add(self, rhs : RHS) -> Bob { Bob }
|
|
}
|
|
|
|
fn main() {
|
|
let b = Bob + 3.5;
|
|
b + 3 //~ ERROR E0277
|
|
//~^ ERROR: mismatched types
|
|
}
|