mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 19:23:50 +00:00
10 lines
143 B
Rust
10 lines
143 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(modulo_one)]
|
|
#![allow(no_effect, unnecessary_operation)]
|
|
|
|
fn main() {
|
|
10 % 1;
|
|
10 % 2;
|
|
}
|