4 lines
58 B
Rust
4 lines
58 B
Rust
|
fn main() {
|
||
|
let x = 10, y = x;
|
||
|
assert (y == 10);
|
||
|
}
|