mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
14 lines
254 B
Text
14 lines
254 B
Text
error: any number modulo 1 will be 0
|
|
--> $DIR/modulo_one.rs:7:5
|
|
|
|
|
7 | 10 % 1;
|
|
| ^^^^^^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/modulo_one.rs:3:9
|
|
|
|
|
3 | #![deny(modulo_one)]
|
|
| ^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|