rust/tests/rustdoc/deduplicate-glob-import-impl-21474.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
303 B
Rust
Raw Normal View History

2023-10-04 20:04:45 +00:00
// https://github.com/rust-lang/rust/issues/21474
#![crate_name="issue_21474"]
pub use inner::*;
mod inner {
impl super::Blah for super::What { }
}
pub trait Blah { }
// @count issue_21474/struct.What.html \
// '//*[@id="trait-implementations-list"]//*[@class="impl"]' 1
pub struct What;