rust-clippy/tests/ui/crashes/ice-3741.rs
2019-04-07 11:11:06 +02:00

12 lines
224 B
Rust

// aux-build:proc_macro_crash.rs
// run-pass
#![feature(proc_macro_hygiene)]
#![warn(clippy::suspicious_else_formatting)]
extern crate proc_macro_crash;
use proc_macro_crash::macro_test;
fn main() {
macro_test!(2);
}