mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
9 lines
88 B
Rust
9 lines
88 B
Rust
#![feature(tool_lints)]
|
|
|
|
#![deny(clippy::all)]
|
|
|
|
fn core() {}
|
|
|
|
fn main() {
|
|
core();
|
|
}
|