mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
7 lines
123 B
Rust
7 lines
123 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy, clippy_mini_macro_test)]
|
|
|
|
#[deny(warnings)]
|
|
fn main() {
|
|
let _ = mini_macro!();
|
|
}
|