Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/mbe/src/tests/expand.rs')
-rw-r--r--crates/mbe/src/tests/expand.rs50
1 files changed, 0 insertions, 50 deletions
diff --git a/crates/mbe/src/tests/expand.rs b/crates/mbe/src/tests/expand.rs
index 4c7d14aaf2..6991c4b001 100644
--- a/crates/mbe/src/tests/expand.rs
+++ b/crates/mbe/src/tests/expand.rs
@@ -108,56 +108,6 @@ fn test_attr_to_token_tree() {
}
#[test]
-fn test_tt_to_stmts() {
- let stmts = parse_macro(
- r#"
- macro_rules! foo {
- () => {
- let a = 0;
- a = 10 + 1;
- a
- }
- }
-"#,
- )
- .expand_statements("foo!{}");
-
- assert_eq!(
- format!("{:#?}", stmts).trim(),
- );
-}
-
-#[test]
fn test_match_literal() {
parse_macro(
r#"