2016-08-17 04:36:04 -05:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
#![deny(useless_attribute)]
|
|
|
|
|
|
|
|
#[allow(dead_code)] //~ ERROR useless lint attribute
|
|
|
|
//~| HELP if you just forgot a `!`, use
|
|
|
|
//~| SUGGESTION #![allow(dead_code)]
|
|
|
|
extern crate clippy_lints;
|
|
|
|
|
2016-08-19 10:31:14 -05:00
|
|
|
// don't lint on unused_import for `use` items
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use std::collections;
|
|
|
|
|
2016-08-17 04:36:04 -05:00
|
|
|
fn main() {}
|