mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00

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