mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-16 05:58:41 +00:00
7 lines
115 B
Rust
7 lines
115 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy_mini_macro_test)]
|
|
|
|
#[deny(warnings)]
|
|
fn main() {
|
|
let _ = mini_macro!();
|
|
}
|