mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
6b59675449
It does not seem to be necessary
10 lines
180 B
Rust
10 lines
180 B
Rust
// aux-build:proc_macro_crash.rs
|
|
|
|
#![warn(clippy::suspicious_else_formatting)]
|
|
|
|
extern crate proc_macro_crash;
|
|
use proc_macro_crash::macro_test;
|
|
|
|
fn main() {
|
|
macro_test!(2);
|
|
}
|