mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
672beb4138
fixes #639
7 lines
84 B
Rust
7 lines
84 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(clippy)]
|
|
|
|
use std::*;
|
|
|
|
fn main() { }
|