]> git.lizzy.rs Git - rust.git/blob - tests/ui/auxiliary/macro_rules.rs
Merge remote-tracking branch 'origin/beta1.35' into backport-merge
[rust.git] / tests / ui / auxiliary / macro_rules.rs
1 #![allow(dead_code)]
2
3 /// Used to test that certain lints don't trigger in imported external macros
4 #[macro_export]
5 macro_rules! foofoo {
6     () => {
7         loop {}
8     };
9 }