-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
C-bugCategory: This is a bug.Category: This is a bug.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
#![feature(extern_types)]
extern {
/// A nice extern type.
pub type Foo;
}
mod sub {
extern {
/// Another extern type. It's not available in the rendered documentaiton.
pub type Bar;
}
/// A non-extern type. This is rendered correctly.
pub struct NonExtern;
}
pub use sub::{Bar, NonExtern};
EDIT: Updated example with non-extern type for contrast.
Metadata
Metadata
Assignees
Labels
C-bugCategory: This is a bug.Category: This is a bug.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.