6 lines
87 B
Rust
6 lines
87 B
Rust
|
fn main() {
|
||
|
let i = ~100;
|
||
|
let j = ~200;
|
||
|
let j <- i;
|
||
|
assert *j == 100;
|
||
|
}
|