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

librustc: Forbid private types in public APIs. #17401

Merged
merged 1 commit into from
Sep 23, 2014

Conversation

pcwalton
Copy link
Contributor

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

@alexcrichton
Copy link
Member

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?

trait Foo {}
pub trait Bar: Foo {} // error
trait Foo {}
fn foo<T: Foo>() {} // error

We allow trait bounds on structs as well now, right?

trait Foo {}
struct Bar<T: Foo> {} // error (also enums(

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!)

@pcwalton pcwalton force-pushed the private-items-in-public-apis branch from 3167755 to 2f1127c Compare September 19, 2014 21:58
@pcwalton
Copy link
Contributor Author

Updated. re-r? @alexcrichton

@sfackler
Copy link
Member

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

@alexcrichton
Copy link
Member

r=me with as many things moved over to visitors as possible.

@pcwalton pcwalton force-pushed the private-items-in-public-apis branch 2 times, most recently from 47dbac1 to c49d84b Compare September 20, 2014 01:11
@pcwalton pcwalton force-pushed the private-items-in-public-apis branch from c49d84b to 3d0c822 Compare September 22, 2014 22:24
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]
@pcwalton pcwalton force-pushed the private-items-in-public-apis branch from 3d0c822 to e9ad12c Compare September 23, 2014 03:05
bors added a commit that referenced this pull request Sep 23, 2014
…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
@bors bors closed this Sep 23, 2014
@bors bors merged commit e9ad12c into rust-lang:master Sep 23, 2014
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.

Feature gate public items in private APIs
4 participants