]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/issue-75982-foreign-macro-weird-mod.rs
Rollup merge of #106970 - kylematsuda:earlybinder-item-bounds, r=lcnr
[rust.git] / tests / 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 }