rust/tests/compile-fail/useless_attribute.rs
2016-08-17 11:36:04 +02:00

10 lines
239 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;
fn main() {}