2021-04-27 13:26:43 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2022-01-10 21:35:55 +00:00
|
|
|
// @has - '//div[@id="synthetic-implementations-list"]/*[@id="impl-Send-for-Foo"]' 'impl Send for Foo'
|
2021-04-27 13:26:43 +00:00
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
pub trait EmptyTrait {}
|
|
|
|
|
2022-01-10 21:35:55 +00:00
|
|
|
// @has - '//div[@id="trait-implementations-list"]/*[@id="impl-EmptyTrait-for-Foo"]' 'impl EmptyTrait for Foo'
|
2021-04-27 13:26:43 +00:00
|
|
|
impl EmptyTrait for Foo {}
|
|
|
|
|
|
|
|
pub trait NotEmpty {
|
|
|
|
fn foo(&self);
|
|
|
|
}
|
|
|
|
|
2022-01-10 21:35:55 +00:00
|
|
|
// @has - '//div[@id="trait-implementations-list"]/details/summary/*[@id="impl-NotEmpty-for-Foo"]' 'impl NotEmpty for Foo'
|
2021-04-27 13:26:43 +00:00
|
|
|
impl NotEmpty for Foo {
|
|
|
|
fn foo(&self) {}
|
|
|
|
}
|