mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
9 lines
129 B
Rust
9 lines
129 B
Rust
use std::ops::AddAssign;
|
|
|
|
pub struct Int(pub i32);
|
|
|
|
impl AddAssign<i32> for Int {
|
|
fn add_assign(&mut self, _: i32) {
|
|
}
|
|
}
|