Fix fail to parse :: for meta in mbe

This commit is contained in:
Edwin Cheng 2021-03-06 04:57:34 +08:00
parent 3d662e320b
commit 20eda09712
2 changed files with 4 additions and 2 deletions

View file

@ -954,7 +954,8 @@ fn test_meta() {
.assert_expand_items(
r#"foo! { cfg(target_os = "windows") }"#,
r#"# [cfg (target_os = "windows")] fn bar () {}"#,
);
)
.assert_expand_items(r#"foo! { hello::world }"#, r#"# [hello :: world] fn bar () {}"#);
}
#[test]