mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
74e843c833
Stopped being used in CSS with
73d0f7c7b6
12 lines
223 B
Rust
12 lines
223 B
Rust
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;
|