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 0d544cf commit fcc7968Copy full SHA for fcc7968
src/tools/rust-analyzer/crates/hir-def/src/expr_store/lower.rs
@@ -1789,7 +1789,6 @@ impl ExprCollector<'_> {
1789
}
1790
None => Pat::Missing,
1791
},
1792
- // FIXME: implement in a way that also builds source map and calculates assoc resolutions in type inference.
1793
ast::Pat::RangePat(p) => {
1794
let mut range_part_lower = |p: Option<ast::Pat>| -> Option<ExprId> {
1795
p.and_then(|it| {
src/tools/rust-analyzer/crates/hir-def/src/expr_store/tests.rs
@@ -445,6 +445,7 @@ fn foo() {
445
);
446
447
448
+#[test]
449
fn skip_skips_body() {
450
let (db, body, owner) = lower(
451
r#"
0 commit comments