mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
204 B
Rust
13 lines
204 B
Rust
// run-pass
|
|
use std::ops::AddAssign;
|
|
|
|
struct Int(#[allow(unused_tuple_struct_fields)] i32);
|
|
|
|
impl AddAssign for Int {
|
|
fn add_assign(&mut self, _: Int) {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|