From e9ad12c0cae5c43ada6641c7dc840a0fbe5010a2 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Fri, 19 Sep 2014 12:30:07 -0700 Subject: librustc: Forbid private types in public APIs. 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 #16463. RFC #48. [breaking-change] --- src/libdebug/repr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libdebug') diff --git a/src/libdebug/repr.rs b/src/libdebug/repr.rs index 7fe6f2dbf67..e1eb2814951 100644 --- a/src/libdebug/repr.rs +++ b/src/libdebug/repr.rs @@ -32,7 +32,7 @@ macro_rules! try( ($me:expr, $e:expr) => ( /// Representations -trait Repr { +pub trait Repr { fn write_repr(&self, writer: &mut io::Writer) -> io::IoResult<()>; } -- cgit 1.4.1-3-g733a5