-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
librustc: Forbid private types in public APIs. #17401
Conversation
There's a few corner cases which may not yet be covered by the lint (I forget), can you add some tests to make sure they're handled?
We allow trait bounds on structs as well now, right?
In general the RFC has many tests as well, I just want to make sure we've got our bases covered before closing the issue. The RFC also mentions that a feature gate would be added, I just want to confirm that you explicitly didn't implement it (which is fine by me!) |
3167755
to
2f1127c
Compare
Updated. re-r? @alexcrichton |
Does the associated issue need to have its title updated? It refers to feature gating this, not forbidding it. EDIT: nevermind, I misread the implementation |
r=me with as many things moved over to visitors as possible. |
47dbac1
to
c49d84b
Compare
c49d84b
to
3d0c822
Compare
This breaks code like: struct Foo { ... } pub fn make_foo() -> Foo { ... } Change this code to: pub struct Foo { // note `pub` ... } pub fn make_foo() -> Foo { ... } The `visible_private_types` lint has been removed, since it is now an error to attempt to expose a private type in a public API. In its place a `#[feature(visible_private_types)]` gate has been added. Closes rust-lang#16463. RFC rust-lang#48. [breaking-change]
3d0c822
to
e9ad12c
Compare
…alexcrichton This breaks code like: struct Foo { ... } pub fn make_foo() -> Foo { ... } Change this code to: pub struct Foo { // note `pub` ... } pub fn make_foo() -> Foo { ... } The `visible_private_types` lint has been removed, since it is now an error to attempt to expose a private type in a public API. Closes #16463. RFC #48. [breaking-change] r? @alexcrichton
This breaks code like:
Change this code to:
The
visible_private_types
lint has been removed, since it is now anerror to attempt to expose a private type in a public API.
Closes #16463.
RFC #48.
[breaking-change]
r? @alexcrichton