mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
8 lines
110 B
Rust
8 lines
110 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(clippy)]
|
|
#![allow(unused_imports)]
|
|
|
|
use std::*;
|
|
|
|
fn main() { }
|