summary refs log tree commit diff
path: root/tests/rustdoc/auxiliary/primitive-reexport.rs
blob: 18b57037634d2ad269d3dba6fc85be56da346a3d (plain)
1
2
3
4
5
6
7
8
//@ compile-flags: --emit metadata --crate-type lib --edition 2018

#![crate_name = "foo"]

pub mod bar {
    pub use bool;
    pub use char as my_char;
}