mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-09 13:33:43 +00:00
8 lines
128 B
Rust
8 lines
128 B
Rust
#![warn(clippy::modulo_one)]
|
|
#![allow(clippy::no_effect, clippy::unnecessary_operation)]
|
|
|
|
fn main() {
|
|
10 % 1;
|
|
10 % 2;
|
|
}
|