aboutsummaryrefslogtreecommitdiff
path: root/crates/mbe/src
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-03-05 20:59:31 +0000
committerGitHub <[email protected]>2021-03-05 20:59:31 +0000
commit750d3cb84678b23a55092f2e4726e48ead37a9ff (patch)
treec07742b3121cb50f90535b042c7e4e114f5d3720 /crates/mbe/src
parent94012e24e038bc1b96e06638b6e2b38852a510eb (diff)
parent20eda09712f0c4cd701575d125122472252820db (diff)
Merge #7887
7887: Fix fail to parse :: for meta in mbe r=edwin0cheng a=edwin0cheng fixes #7886 bors r+ Co-authored-by: Edwin Cheng <[email protected]>
Diffstat (limited to 'crates/mbe/src')
-rw-r--r--crates/mbe/src/tests.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/mbe/src/tests.rs b/crates/mbe/src/tests.rs
index 5c641ebf2..08acd4ac2 100644
--- a/crates/mbe/src/tests.rs
+++ b/crates/mbe/src/tests.rs
@@ -954,7 +954,8 @@ fn test_meta() {
954 .assert_expand_items( 954 .assert_expand_items(
955 r#"foo! { cfg(target_os = "windows") }"#, 955 r#"foo! { cfg(target_os = "windows") }"#,
956 r#"# [cfg (target_os = "windows")] fn bar () {}"#, 956 r#"# [cfg (target_os = "windows")] fn bar () {}"#,
957 ); 957 )
958 .assert_expand_items(r#"foo! { hello::world }"#, r#"# [hello :: world] fn bar () {}"#);
958} 959}
959 960
960#[test] 961#[test]