2021-04-27 15:26:43 +02:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2021-04-23 22:15:57 +02:00
|
|
|
// @has - '//div[@id="synthetic-implementations-list"]/div[@id="impl-Send"]' 'impl Send for Foo'
|
2021-04-27 15:26:43 +02:00
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
|
|
pub trait EmptyTrait {}
|
|
|
|
|
|
2021-04-23 22:15:57 +02:00
|
|
|
// @has - '//div[@id="trait-implementations-list"]/div[@id="impl-EmptyTrait"]' 'impl EmptyTrait for Foo'
|
2021-04-27 15:26:43 +02:00
|
|
|
impl EmptyTrait for Foo {}
|
|
|
|
|
|
|
|
|
|
pub trait NotEmpty {
|
|
|
|
|
fn foo(&self);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-23 22:15:57 +02:00
|
|
|
// @has - '//div[@id="trait-implementations-list"]/details/summary/div[@id="impl-NotEmpty"]' 'impl NotEmpty for Foo'
|
2021-04-27 15:26:43 +02:00
|
|
|
impl NotEmpty for Foo {
|
|
|
|
|
fn foo(&self) {}
|
|
|
|
|
}
|