add test for #78894

This commit is contained in:
surechen 2024-03-04 12:28:59 +08:00
parent 70aa0b86c0
commit 6e9f59f967
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
//@ check-pass
//@ edition:2018
#![warn(unused_imports)]
fn main ()
{
bar!();
macro_rules! bar {
() => ();
}
use bar;
}