This commit is contained in:
Edwin Cheng 2021-01-08 14:00:23 +08:00
parent 74a24adc8e
commit bced02c5dc

View file

@ -1079,6 +1079,19 @@ fn test_vertical_bar_with_pat() {
.assert_expand_items(r#"foo! { | x | }"#, r#"0"#);
}
#[test]
fn test_dollar_crate_lhs_is_not_meta() {
parse_macro(
r#"
macro_rules! foo {
($crate) => {};
() => {0};
}
"#,
)
.assert_expand_items(r#"foo!{}"#, r#"0"#);
}
#[test]
fn test_lifetime() {
parse_macro(