Skip to content

Commit cdbfe9f

Browse files
committed
Add test for metavariable hygiene.
1 parent 8f73fc8 commit cdbfe9f

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/test/compile-fail/macro-tt-matchers.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,16 @@ macro_rules! foo {
1616

1717
foo!(Box);
1818

19+
macro_rules! bar {
20+
($x:tt) => {
21+
macro_rules! baz {
22+
($x:tt, $y:tt) => { ($x, $y) }
23+
}
24+
}
25+
}
26+
1927
#[rustc_error]
20-
fn main() {} //~ ERROR compilation successful
28+
fn main() { //~ ERROR compilation successful
29+
bar!($y);
30+
let _: (i8, i16) = baz!(0i8, 0i16);
31+
}

0 commit comments

Comments
 (0)