You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#![feature(extern_types)]extern{/// A nice extern type.pubtypeFoo;}mod sub {extern{/// Another extern type. It's not available in the rendered documentaiton.pubtypeBar;}/// A non-extern type. This is rendered correctly.pubstructNonExtern;}pubuse sub::{Bar,NonExtern};
Rendered:
EDIT: Updated example with non-extern type for contrast.
The text was updated successfully, but these errors were encountered:
Handles `pub use` of `extern { fn, static, type }`. Also plug in some more
`match` arms where handling `extern type` is reasonable.
Fixedrust-lang#46098.
…, r=GuillaumeGomez
Properly handle reexport of foreign items.
Handles `pub use` of `extern { fn, static, type }`. Also plug in some more `match` arms where handling `extern type` is reasonable.
Fixed#46098.
Rendered:

EDIT: Updated example with non-extern type for contrast.
The text was updated successfully, but these errors were encountered: