mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
283 B
Rust
23 lines
283 B
Rust
// run-pass
|
|
|
|
struct X {
|
|
a: isize
|
|
}
|
|
|
|
trait Changer {
|
|
fn change(self) -> Self;
|
|
}
|
|
|
|
impl Changer for X {
|
|
fn change(mut self) -> X {
|
|
self.a = 55;
|
|
self
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let x = X { a: 32 };
|
|
let new_x = x.change();
|
|
assert_eq!(new_x.a, 55);
|
|
}
|