mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
74e843c833
Stopped being used in CSS with
73d0f7c7b6
15 lines
550 B
Rust
15 lines
550 B
Rust
// ignore-tidy-linelength
|
|
|
|
// @has issue_33054/impls/struct.Foo.html
|
|
// @has - '//h3[@class="code-header"]' 'impl Foo'
|
|
// @has - '//h3[@class="code-header"]' 'impl Bar for Foo'
|
|
// @count - '//*[@id="trait-implementations-list"]//*[@class="impl"]' 1
|
|
// @count - '//*[@id="main-content"]/div[@id="implementations-list"]/details/summary/*[@class="impl"]' 1
|
|
// @has issue_33054/impls/bar/trait.Bar.html
|
|
// @has - '//h3[@class="code-header"]' 'impl Bar for Foo'
|
|
// @count - '//*[@class="struct"]' 1
|
|
pub mod impls;
|
|
|
|
#[doc(inline)]
|
|
pub use impls as impls2;
|