diff options
author | Florian Diebold <[email protected]> | 2020-03-13 12:03:31 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2020-03-16 17:38:19 +0000 |
commit | b973158aeb337041d4e1434cf5d8c609a0b02bef (patch) | |
tree | e3da1bb7a3c2d89623382865edc7ef64c039496d /crates/ra_hir_ty/src | |
parent | d3773ec1522681de117d354f0c82e753c68c6d0b (diff) |
Make MBE expansion more resilient (WIP)
Diffstat (limited to 'crates/ra_hir_ty/src')
-rw-r--r-- | crates/ra_hir_ty/src/tests/macros.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/ra_hir_ty/src/tests/macros.rs b/crates/ra_hir_ty/src/tests/macros.rs index 3b7022ad5..2e309a379 100644 --- a/crates/ra_hir_ty/src/tests/macros.rs +++ b/crates/ra_hir_ty/src/tests/macros.rs | |||
@@ -462,7 +462,7 @@ fn main() { | |||
462 | fn infer_builtin_macros_include() { | 462 | fn infer_builtin_macros_include() { |
463 | let (db, pos) = TestDB::with_position( | 463 | let (db, pos) = TestDB::with_position( |
464 | r#" | 464 | r#" |
465 | //- /main.rs | 465 | //- /main.rs |
466 | #[rustc_builtin_macro] | 466 | #[rustc_builtin_macro] |
467 | macro_rules! include {() => {}} | 467 | macro_rules! include {() => {}} |
468 | 468 | ||
@@ -483,7 +483,7 @@ fn bar() -> u32 {0} | |||
483 | fn infer_builtin_macros_include_concat() { | 483 | fn infer_builtin_macros_include_concat() { |
484 | let (db, pos) = TestDB::with_position( | 484 | let (db, pos) = TestDB::with_position( |
485 | r#" | 485 | r#" |
486 | //- /main.rs | 486 | //- /main.rs |
487 | #[rustc_builtin_macro] | 487 | #[rustc_builtin_macro] |
488 | macro_rules! include {() => {}} | 488 | macro_rules! include {() => {}} |
489 | 489 | ||
@@ -507,7 +507,7 @@ fn bar() -> u32 {0} | |||
507 | fn infer_builtin_macros_include_concat_with_bad_env_should_failed() { | 507 | fn infer_builtin_macros_include_concat_with_bad_env_should_failed() { |
508 | let (db, pos) = TestDB::with_position( | 508 | let (db, pos) = TestDB::with_position( |
509 | r#" | 509 | r#" |
510 | //- /main.rs | 510 | //- /main.rs |
511 | #[rustc_builtin_macro] | 511 | #[rustc_builtin_macro] |
512 | macro_rules! include {() => {}} | 512 | macro_rules! include {() => {}} |
513 | 513 | ||
@@ -534,7 +534,7 @@ fn bar() -> u32 {0} | |||
534 | fn infer_builtin_macros_include_itself_should_failed() { | 534 | fn infer_builtin_macros_include_itself_should_failed() { |
535 | let (db, pos) = TestDB::with_position( | 535 | let (db, pos) = TestDB::with_position( |
536 | r#" | 536 | r#" |
537 | //- /main.rs | 537 | //- /main.rs |
538 | #[rustc_builtin_macro] | 538 | #[rustc_builtin_macro] |
539 | macro_rules! include {() => {}} | 539 | macro_rules! include {() => {}} |
540 | 540 | ||