mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
16 lines
599 B
Rust
16 lines
599 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"]' 6
|
|
// The number here will need updating when new auto traits are added: ^
|
|
pub struct Foo<T> {
|
|
field: T,
|
|
}
|
|
|
|
unsafe impl<T> Send for Foo<T> {}
|