11 lines
239 B
Rust
11 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() {}
|