mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
303 B
Rust
15 lines
303 B
Rust
// 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;
|