
Filter away names that are not actually imported by the glob, e.g. because they are shadowed by something else
7 lines
92 B
Rust
7 lines
92 B
Rust
#![crate_name = "inner"]
|
|
|
|
pub struct SomeStruct;
|
|
|
|
pub fn some_fn() {}
|
|
|
|
pub enum Shadowed {}
|