Skip to content

Commit 6e9f59f

Browse files
committed
add test for rust-lang#78894
1 parent 70aa0b8 commit 6e9f59f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//@ check-pass
2+
//@ edition:2018
3+
#![warn(unused_imports)]
4+
5+
fn main ()
6+
{
7+
bar!();
8+
9+
macro_rules! bar {
10+
() => ();
11+
}
12+
13+
use bar;
14+
}

0 commit comments

Comments
 (0)