]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/issue-75982-foreign-macro-weird-mod.rs
Rollup merge of #87596 - jesyspa:issue-87318-hidden-whitespace, r=estebank
[rust.git] / src / test / ui / macros / issue-75982-foreign-macro-weird-mod.rs
1 // aux-build:issue-75982.rs
2 // check-pass
3
4 // Regression test for issue #75982
5 // Tests that don't ICE when invoking a foreign macro
6 // that occurs inside a module with a weird parent.
7
8 extern crate issue_75982;
9
10 fn main() {
11     issue_75982::first_macro!();
12     issue_75982::second_macro!();
13 }