summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/synthetic_auto/manual.rs
blob: 35047e3e8c0717349eca64a02043ac1b06c4bc97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// @has manual/struct.Foo.html
// @has - '//*[@id="synthetic-implementations-list"]//*[@class="impl has-srclink"]//h3[@class="code-header in-band"]' \
// 'impl<T> Sync for Foo<T>where T: Sync'
//
// @has - '//*[@id="trait-implementations-list"]//*[@class="impl has-srclink"]//h3[@class="code-header in-band"]' \
// 'impl<T> Send for Foo<T>'
//
// @count - '//*[@id="trait-implementations-list"]//*[@class="impl has-srclink"]' 1
// @count - '//*[@id="synthetic-implementations-list"]//*[@class="impl has-srclink"]' 4
pub struct Foo<T> {
    field: T,
}

unsafe impl<T> Send for Foo<T> {}