Skip to content

Commit a2e6043

Browse files
Merge pull request #20797 from A4-Tacks/fixed-fixme-tuple-field-infer
minor: Remove FIXME for test_tuple_field_inference
2 parents cd81783 + 224e89e commit a2e6043

File tree

1 file changed

+1
-2
lines changed
  • crates/ide-completion/src/completions

1 file changed

+1
-2
lines changed

crates/ide-completion/src/completions/dot.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -794,8 +794,7 @@ struct T(S);
794794
795795
impl T {
796796
fn foo(&self) {
797-
// FIXME: This doesn't work without the trailing `a` as `0.` is a float
798-
self.0.a$0
797+
self.0.$0
799798
}
800799
}
801800
"#,

0 commit comments

Comments
 (0)