mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
16 lines
164 B
Rust
16 lines
164 B
Rust
// run-pass
|
|
|
|
|
|
|
|
|
|
pub fn main() {
|
|
let mut x: u8 = 12;
|
|
let y: u8 = 12;
|
|
x = x + 1;
|
|
x = x - 1;
|
|
assert_eq!(x, y);
|
|
// x = 14;
|
|
// x = x + 1;
|
|
|
|
}
|