mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
9 lines
155 B
Rust
9 lines
155 B
Rust
//@ compile-flags: --emit metadata --crate-type lib --edition 2018
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
pub mod bar {
|
|
pub use bool;
|
|
pub use char as my_char;
|
|
}
|