]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-38556.rs
Auto merge of #106827 - alexcrichton:update-llvm-to-15.0.7, r=cuviper
[rust.git] / tests / 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 }