]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/issue-54441.rs
Rollup merge of #93813 - xldenis:public-mir-passes, r=wesleywiser
[rust.git] / src / test / ui / macros / issue-54441.rs
1 macro_rules! m {
2     () => {
3         let //~ ERROR macro expansion ignores token `let` and any following
4     };
5 }
6
7 extern "C" {
8     m!();
9 }
10
11 fn main() {}