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