-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Description
STR
// lib.rs
trait Private {}
// main.rs
extern crate lib;
use lib::Private;
fn main() {}
$ rustc --crate-type=lib lib.rs
$ rustc -L . main.rs
main.rs:3:5: 3:18 error: trait `Private` is private
main.rs:3 use lib::Private;
^~~~~~~~~~~~~
error: aborting due to previous error
$ rustdoc lib.rs
Version
rustc 0.12.0-pre (eff87bc9d 2014-08-17 13:11:06 +0000)
Metadata
Metadata
Assignees
Labels
T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.