2015-05-31 14:17:31 +02:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
2017-05-17 14:19:44 +02:00
|
|
|
#![warn(modulo_one)]
|
2016-05-13 16:43:47 +02:00
|
|
|
#![allow(no_effect, unnecessary_operation)]
|
2015-05-31 14:17:31 +02:00
|
|
|
|
|
|
|
fn main() {
|
2017-02-08 14:58:07 +01:00
|
|
|
10 % 1;
|
2015-05-31 14:17:31 +02:00
|
|
|
10 % 2;
|
|
|
|
}
|