]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/crashes/ice-3741.rs
Auto merge of #71815 - Mark-Simulacrum:no-llvm-rebuild, r=jonas-schievink
[rust.git] / src / tools / clippy / tests / ui / crashes / ice-3741.rs
1 // aux-build:proc_macro_crash.rs
2 // run-pass
3
4 #![feature(proc_macro_hygiene)]
5 #![warn(clippy::suspicious_else_formatting)]
6
7 extern crate proc_macro_crash;
8 use proc_macro_crash::macro_test;
9
10 fn main() {
11     macro_test!(2);
12 }