mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
74e843c833
Stopped being used in CSS with
73d0f7c7b6
15 lines
523 B
Rust
15 lines
523 B
Rust
// @has manual/struct.Foo.html
|
|
// @has - '//*[@id="synthetic-implementations-list"]//*[@class="impl"]//h3[@class="code-header"]' \
|
|
// 'impl<T> Sync for Foo<T>where T: Sync'
|
|
//
|
|
// @has - '//*[@id="trait-implementations-list"]//*[@class="impl"]//h3[@class="code-header"]' \
|
|
// 'impl<T> Send for Foo<T>'
|
|
//
|
|
// @count - '//*[@id="trait-implementations-list"]//*[@class="impl"]' 1
|
|
// @count - '//*[@id="synthetic-implementations-list"]//*[@class="impl"]' 4
|
|
pub struct Foo<T> {
|
|
field: T,
|
|
}
|
|
|
|
unsafe impl<T> Send for Foo<T> {}
|