]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/modulo_one.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / modulo_one.rs
1
2
3 #![warn(modulo_one)]
4 #![allow(no_effect, unnecessary_operation)]
5
6 fn main() {
7 10 % 1;
8 10 % 2;
9 }