Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make FRU respect privacy of all struct fields, mentioned or unmentioned. #22144

Merged
merged 3 commits into from
Feb 10, 2015

Conversation

pnkfelix
Copy link
Member

Make FRU respect privacy of all struct fields, mentioned or unmentioned.

This is RFC 736.

Fix #21407.

(Also, partially addresses #6993, but I do not know whether there are other uses of Ident still outstanding; there are no more references to #6993 present in the code base after this commit.)

@rust-highfive
Copy link
Contributor

r? @alexcrichton

(rust_highfive has picked a reviewer for you, use r? to override)

self.check_field(expr.span, id,
NamedField(field.ident.node));
ty::ty_struct(ctor_id, _) => {
let all_fields = ty::lookup_struct_fields(self.tcx, ctor_id);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be worth a comment (maybe with a pointer to the RFC), clarifying that

  1. The fields that are explicitly mentioned must be public
  2. The rest must also be public as described in RFC #xyz and issue #xyz

@nikomatsakis
Copy link
Contributor

r+ modulo comment

@pnkfelix
Copy link
Member Author

@bors r=nikomatsakis 0a0aa11 rollup

@pnkfelix
Copy link
Member Author

@bors: r-

@pnkfelix
Copy link
Member Author

(need to add //~ ERROR ... to the test file.)

@pnkfelix
Copy link
Member Author

@bors r=nikomatsakis 3f5af9f rollup

alexcrichton added a commit to alexcrichton/rust that referenced this pull request Feb 10, 2015
@bors bors merged commit 3f5af9f into rust-lang:master Feb 10, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Functional record update should respect privacy (or consume a non-Copy source)
5 participants