rust/tests/rustdoc/inline_cross/auxiliary/cross-glob.rs
Vadim Petrochenkov 3b0d306b94 rustdoc: Fix glob import inlining
Filter away names that are not actually imported by the glob, e.g. because they are shadowed by something else
2023-01-17 00:55:28 +04:00

8 lines
92 B
Rust

#![crate_name = "inner"]
pub struct SomeStruct;
pub fn some_fn() {}
pub enum Shadowed {}