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.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/crates/mbe/src/tests/expand.rs b/crates/mbe/src/tests/expand.rs
index d7e8c27acc..4c7d14aaf2 100644
--- a/crates/mbe/src/tests/expand.rs
+++ b/crates/mbe/src/tests/expand.rs
@@ -108,20 +108,6 @@ fn test_attr_to_token_tree() {
}
#[test]
-fn test_two_idents() {
- parse_macro(
- r#"
- macro_rules! foo {
- ($ i:ident, $ j:ident) => {
- fn foo() { let a = $ i; let b = $j; }
- }
- }
-"#,
- )
- .assert_expand_items("foo! { foo, bar }", "fn foo () {let a = foo ; let b = bar ;}");
-}
-
-#[test]
fn test_tt_to_stmts() {
let stmts = parse_macro(
r#"