aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_mbe/src/syntax_bridge.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-31 18:43:54 +0000
committerAleksey Kladov <[email protected]>2019-01-31 20:23:30 +0000
commita16f6bb27df1a9a9fcb506081bb30ccbf966e5c2 (patch)
tree7ec1a33ec57806979951fa5cefc3cc9a05b28987 /crates/ra_mbe/src/syntax_bridge.rs
parent2d1f0b105d7995088fdf7a90e5e594b5555699c6 (diff)
cleanup
Diffstat (limited to 'crates/ra_mbe/src/syntax_bridge.rs')
-rw-r--r--crates/ra_mbe/src/syntax_bridge.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_mbe/src/syntax_bridge.rs b/crates/ra_mbe/src/syntax_bridge.rs
index aad5f24b7..3223f6ea5 100644
--- a/crates/ra_mbe/src/syntax_bridge.rs
+++ b/crates/ra_mbe/src/syntax_bridge.rs
@@ -107,7 +107,7 @@ impl_froms!(TokenTree: Leaf, Subtree);
107 let expansion = crate::exapnd(&mbe, &invocation_tt).unwrap(); 107 let expansion = crate::exapnd(&mbe, &invocation_tt).unwrap();
108 assert_eq!( 108 assert_eq!(
109 expansion.to_string(), 109 expansion.to_string(),
110 "{(impl From < Leaf > for TokenTree {fn from (it : Leaf) -> TokenTree {TokenTree :: Leaf (it)}}) \ 110 "impl From < Leaf > for TokenTree {fn from (it : Leaf) -> TokenTree {TokenTree :: Leaf (it)}} \
111 (impl From < Subtree > for TokenTree {fn from (it : Subtree) -> TokenTree {TokenTree :: Subtree (it)}})}" 111 impl From < Subtree > for TokenTree {fn from (it : Subtree) -> TokenTree {TokenTree :: Subtree (it)}}"
112 ) 112 )
113} 113}