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 4267c38 commit c495a73Copy full SHA for c495a73
crates/ide_completion/src/completions/dot.rs
@@ -69,7 +69,7 @@ fn complete_fields(
69
f(Either::Left(field), ty);
70
}
71
for (i, ty) in receiver.tuple_fields(ctx.db).into_iter().enumerate() {
72
- // FIXME: Handle visibility
+ // Tuple fields are always public (tuple struct fields are handled above).
73
f(Either::Right(i), ty);
74
75
0 commit comments