mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
307 B
Rust
18 lines
307 B
Rust
// run-pass
|
|
use std::ops::Add;
|
|
fn show(z: i32) {
|
|
println!("{}", z)
|
|
}
|
|
fn main() {
|
|
let x = 23;
|
|
let y = 42;
|
|
show(Add::add( x, y));
|
|
show(Add::add( x, &y));
|
|
show(Add::add(&x, y));
|
|
show(Add::add(&x, &y));
|
|
show( x + y);
|
|
show( x + &y);
|
|
show(&x + y);
|
|
show(&x + &y);
|
|
}
|