1
Fork 0
rust/tests/rustdoc/auxiliary/primitive-reexport.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
154 B
Rust
Raw Normal View History

// compile-flags: --emit metadata --crate-type lib --edition 2018
#![crate_name = "foo"]
pub mod bar {
pub use bool;
pub use char as my_char;
}