mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-18 09:03:18 +00:00
9 lines
97 B
Rust
Executable file
9 lines
97 B
Rust
Executable file
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(clippy)]
|
|
|
|
fn core() {}
|
|
|
|
fn main() {
|
|
core();
|
|
}
|