mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
9 lines
154 B
Rust
9 lines
154 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;
|
|
}
|