diff options
Diffstat (limited to 'crates/ra_mbe')
-rw-r--r-- | crates/ra_mbe/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_mbe/src/lib.rs b/crates/ra_mbe/src/lib.rs index 9c450eaba..dec7ba22e 100644 --- a/crates/ra_mbe/src/lib.rs +++ b/crates/ra_mbe/src/lib.rs | |||
@@ -9,6 +9,9 @@ mod syntax_bridge; | |||
9 | mod tt_iter; | 9 | mod tt_iter; |
10 | mod subtree_source; | 10 | mod subtree_source; |
11 | 11 | ||
12 | #[cfg(test)] | ||
13 | mod tests; | ||
14 | |||
12 | pub use tt::{Delimiter, Punct}; | 15 | pub use tt::{Delimiter, Punct}; |
13 | 16 | ||
14 | use crate::{ | 17 | use crate::{ |
@@ -273,6 +276,3 @@ impl<T: Default> From<Result<T, ExpandError>> for ExpandResult<T> { | |||
273 | .map_or_else(|e| ExpandResult(Default::default(), Some(e)), |it| ExpandResult(it, None)) | 276 | .map_or_else(|e| ExpandResult(Default::default(), Some(e)), |it| ExpandResult(it, None)) |
274 | } | 277 | } |
275 | } | 278 | } |
276 | |||
277 | #[cfg(test)] | ||
278 | mod tests; | ||