]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/ice-3741.rs
Merge remote-tracking branch 'origin/rust-1.34.1' into HEAD
[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 }