mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
549 B
Rust
20 lines
549 B
Rust
#![crate_name = "foo"]
|
|
|
|
// @has foo/struct.Foo.html
|
|
// @has - '//div[@id="synthetic-implementations-list"]/*[@id="impl-Send-for-Foo"]' 'impl Send for Foo'
|
|
pub struct Foo;
|
|
|
|
pub trait EmptyTrait {}
|
|
|
|
// @has - '//div[@id="trait-implementations-list"]/*[@id="impl-EmptyTrait-for-Foo"]' 'impl EmptyTrait for Foo'
|
|
impl EmptyTrait for Foo {}
|
|
|
|
pub trait NotEmpty {
|
|
fn foo(&self);
|
|
}
|
|
|
|
// @has - '//div[@id="trait-implementations-list"]/details/summary/*[@id="impl-NotEmpty-for-Foo"]' 'impl NotEmpty for Foo'
|
|
impl NotEmpty for Foo {
|
|
fn foo(&self) {}
|
|
}
|