]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-38556.rs
Rollup merge of #98640 - cuviper:stable-rust-analyzer, r=Mark-Simulacrum
[rust.git] / src / test / ui / issues / issue-38556.rs
1 // run-pass
2 #![allow(dead_code)]
3 pub struct Foo;
4
5 macro_rules! reexport {
6     () => { use Foo as Bar; }
7 }
8
9 reexport!();
10
11 fn main() {
12     fn f(_: Bar) {}
13 }