Skip to content

Commit fe2dc91

Browse files
committed
Add a regression test for issue rust-lang#63460
1 parent 93d369b commit fe2dc91

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Regression test for the issue #63460.
2+
3+
// check-pass
4+
5+
#[macro_export]
6+
macro_rules! separator {
7+
() => { "/" };
8+
}
9+
10+
#[macro_export]
11+
macro_rules! concat_separator {
12+
( $e:literal, $($other:literal),+ ) => {
13+
concat!($e, $crate::separator!(), $crate::concat_separator!($($other),+))
14+
};
15+
( $e:literal ) => {
16+
$e
17+
}
18+
}
19+
20+
fn main() {
21+
println!("{}", concat_separator!(2, 3, 4))
22+
}

0 commit comments

Comments
 (0)