mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 06:26:11 +00:00
13 lines
190 B
Rust
13 lines
190 B
Rust
//@ check-pass
|
|
use std::ops::AddAssign;
|
|
|
|
struct Int(#[allow(dead_code)] i32);
|
|
|
|
impl AddAssign for Int {
|
|
fn add_assign(&mut self, _: Int) {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|