7 lines
97 B
Rust
7 lines
97 B
Rust
// edition:2018
|
|
pub mod l1 {
|
|
pub mod l3 {
|
|
pub struct L4;
|
|
}
|
|
pub use l3::L4;
|
|
}
|