summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-3741.rs
blob: 3106a2e721694c732221cd4b5483ca6789f26274 (plain)
1
2
3
4
5
6
7
8
9
10
//@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);
}