diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-12-15 12:41:07 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-15 12:41:07 +0000 |
commit | 39aae835fd70d06092c1be1add6eef3984439529 (patch) | |
tree | d59398a2d4674a214d776ab97576209783aa4629 /crates/hir_ty | |
parent | 435d46b1835eb29ffdefc6dacd609838a5c1035a (diff) | |
parent | 1f4da7098c46a81784a099d80ba63539f94092d2 (diff) |
Merge #6886
6886: Expand statements for macros in lowering r=matklad a=edwin0cheng
Fixes #6811
Co-authored-by: Edwin Cheng <[email protected]>
Diffstat (limited to 'crates/hir_ty')
-rw-r--r-- | crates/hir_ty/src/tests/regression.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/hir_ty/src/tests/regression.rs b/crates/hir_ty/src/tests/regression.rs index da8170417..307a257b1 100644 --- a/crates/hir_ty/src/tests/regression.rs +++ b/crates/hir_ty/src/tests/regression.rs | |||
@@ -593,6 +593,30 @@ fn issue_4465_dollar_crate_at_type() { | |||
593 | } | 593 | } |
594 | 594 | ||
595 | #[test] | 595 | #[test] |
596 | fn issue_6811() { | ||
597 | check_infer( | ||
598 | r#" | ||
599 | macro_rules! profile_function { | ||
600 | () => { | ||
601 | let _a = 1; | ||
602 | let _b = 1; | ||
603 | }; | ||
604 | } | ||
605 | fn main() { | ||
606 | profile_function!(); | ||
607 | } | ||
608 | "#, | ||
609 | expect![[r#" | ||
610 | !3..5 '_a': i32 | ||
611 | !6..7 '1': i32 | ||
612 | !11..13 '_b': i32 | ||
613 | !14..15 '1': i32 | ||
614 | 103..131 '{ ...!(); }': () | ||
615 | "#]], | ||
616 | ); | ||
617 | } | ||
618 | |||
619 | #[test] | ||
596 | fn issue_4053_diesel_where_clauses() { | 620 | fn issue_4053_diesel_where_clauses() { |
597 | check_infer( | 621 | check_infer( |
598 | r#" | 622 | r#" |