]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/ice-3741.rs
Rollup merge of #4820 - guanqun:comment-fix, r=flip1995
[rust.git] / 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 }