2023-10-04 15:04:45 -05:00
|
|
|
// https://github.com/rust-lang/rust/issues/21474
|
2023-10-04 14:08:47 -05:00
|
|
|
#![crate_name="issue_21474"]
|
|
|
|
|
2015-04-07 13:08:21 -05:00
|
|
|
pub use inner::*;
|
|
|
|
|
|
|
|
mod inner {
|
|
|
|
impl super::Blah for super::What { }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Blah { }
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ count issue_21474/struct.What.html \
|
2023-01-28 17:35:02 -06:00
|
|
|
// '//*[@id="trait-implementations-list"]//*[@class="impl"]' 1
|
2015-04-07 13:08:21 -05:00
|
|
|
pub struct What;
|