rust-clippy/tests/ui/modulo_one.stderr

11 lines
209 B
Text
Raw Normal View History

error: any number modulo 1 will be 0
--> $DIR/modulo_one.rs:5:5
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | 10 % 1;
2018-10-06 16:18:06 +00:00
| ^^^^^^
|
= note: `-D clippy::modulo-one` implied by `-D warnings`
2018-01-16 16:06:27 +00:00
error: aborting due to previous error