6 lines
65 B
Rust
6 lines
65 B
Rust
|
fn main() {
|
||
|
let x = 1;
|
||
|
let y = 1;
|
||
|
assert &x == &y;
|
||
|
}
|