mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
12 lines
140 B
Rust
12 lines
140 B
Rust
#![crate_type = "lib"]
|
|
|
|
use super::A; //~ ERROR failed to resolve
|
|
|
|
mod b {
|
|
pub trait A {}
|
|
pub trait B {}
|
|
}
|
|
|
|
/// [`A`]
|
|
pub use b::*;
|