Fixed old failed test due to new fixes

This commit is contained in:
Edwin Cheng 2020-12-28 20:08:50 +08:00
parent 710407b11d
commit 877c251bef

View File

@ -677,7 +677,7 @@ fn macro_expansion_overflow() {
r#"
macro_rules! a {
($e:expr; $($t:tt)*) => {
b!($($t)*);
b!(static = (); $($t)*);
};
() => {};
}
@ -689,7 +689,7 @@ macro_rules! b {
() => {};
}
b! { static = #[] (); }
b! { static = #[] ();}
"#,
expect![[r#"
crate