17 lines
182 B
Rust
17 lines
182 B
Rust
//@ known-bug: rust-lang/rust#125013
|
|
//@ edition:2021
|
|
mod a {
|
|
pub mod b {
|
|
pub mod c {
|
|
pub trait D {}
|
|
}
|
|
}
|
|
}
|
|
|
|
use a::*;
|
|
|
|
use e as b;
|
|
use b::c::D as e;
|
|
|
|
fn main() { }
|