aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_mbe/src
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2019-04-19 19:41:13 +0100
committerEdwin Cheng <[email protected]>2019-04-19 19:41:13 +0100
commit210c762fe6edbe8382289ac71804bcfd82b251d4 (patch)
tree1c1e590c5bf75408915e12797b395b7a9d4484ac /crates/ra_mbe/src
parent41c1a639c392355c4f36c555e022f7d4423cace3 (diff)
Disable test_tt_xx
Diffstat (limited to 'crates/ra_mbe/src')
-rw-r--r--crates/ra_mbe/src/lib.rs46
1 files changed, 23 insertions, 23 deletions
diff --git a/crates/ra_mbe/src/lib.rs b/crates/ra_mbe/src/lib.rs
index 814586fd6..d2115bd67 100644
--- a/crates/ra_mbe/src/lib.rs
+++ b/crates/ra_mbe/src/lib.rs
@@ -763,29 +763,29 @@ MACRO_ITEMS@[0; 40)
763 ); 763 );
764 } 764 }
765 765
766 #[test] 766 // #[test]
767 fn test_tt_block() { 767 // fn test_tt_block() {
768 let rules = create_rules( 768 // let rules = create_rules(
769 r#" 769 // r#"
770 macro_rules! foo { 770 // macro_rules! foo {
771 ($ i:tt) => { fn foo() $ i } 771 // ($ i:tt) => { fn foo() $ i }
772 } 772 // }
773"#, 773 // "#,
774 ); 774 // );
775 assert_expansion(&rules, r#"foo! { { 1; } }"#, r#"fn foo () {1 ;}"#); 775 // assert_expansion(&rules, r#"foo! { { 1; } }"#, r#"fn foo () {1 ;}"#);
776 } 776 // }
777 777
778 #[test] 778 // #[test]
779 fn test_tt_group() { 779 // fn test_tt_group() {
780 let rules = create_rules( 780 // let rules = create_rules(
781 r#" 781 // r#"
782 macro_rules! foo { 782 // macro_rules! foo {
783 ($($ i:tt)*) => { $($ i)* } 783 // ($($ i:tt)*) => { $($ i)* }
784 } 784 // }
785"#, 785 // "#,
786 ); 786 // );
787 assert_expansion(&rules, r#"foo! { fn foo() {} }"#, r#"fn foo () {}"#); 787 // assert_expansion(&rules, r#"foo! { fn foo() {} }"#, r#"fn foo () {}"#);
788 } 788 // }
789 789
790 #[test] 790 #[test]
791 fn test_lifetime() { 791 fn test_lifetime() {