Add test
This commit is contained in:
parent
74a24adc8e
commit
bced02c5dc
@ -1079,6 +1079,19 @@ macro_rules! foo {
|
||||
.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(
|
||||
|
Loading…
Reference in New Issue
Block a user