1
Fork 0
rust/tests/compile-fail/useless_attribute.rs

11 lines
239 B
Rust
Raw Normal View History

#![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() {}