mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
14 lines
334 B
Rust
14 lines
334 B
Rust
#![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;
|
|
|
|
// don't lint on unused_import for `use` items
|
|
#[allow(unused_imports)]
|
|
use std::collections;
|
|
|
|
fn main() {}
|