// run-pass use std::ops::AddAssign; struct Int(i32); impl AddAssign for Int { fn add_assign(&mut self, _: Int) { unimplemented!() } } fn main() {}