about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-3741.rs
blob: d8c02b1ba4528a1059aaf0f9b7a56b10fd6216ac (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ check-pass
//@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);
}