mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
341 B
Rust
20 lines
341 B
Rust
// run-pass
|
|
|
|
|
|
|
|
|
|
pub fn main() {
|
|
let x: isize = 15;
|
|
let y: isize = 5;
|
|
assert_eq!(x / 5, 3);
|
|
assert_eq!(x / 4, 3);
|
|
assert_eq!(x / 3, 5);
|
|
assert_eq!(x / y, 3);
|
|
assert_eq!(15 / y, 3);
|
|
assert_eq!(x % 5, 0);
|
|
assert_eq!(x % 4, 3);
|
|
assert_eq!(x % 3, 0);
|
|
assert_eq!(x % y, 0);
|
|
assert_eq!(15 % y, 0);
|
|
}
|