mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 21:29:32 +00:00
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;
|