We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68ff26 commit 9da1eeeCopy full SHA for 9da1eee
crates/hir_ty/src/tests/regression.rs
@@ -592,6 +592,30 @@ fn issue_4465_dollar_crate_at_type() {
592
);
593
}
594
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]
620
fn issue_4053_diesel_where_clauses() {
621
check_infer(
0 commit comments