about summary refs log tree commit diff
path: root/tests/rustdoc/synthetic_auto/no-redundancy.rs
blob: 7260107d8617baf7970dfa029eff1d3b176e798c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub struct Inner<T> {
    field: T,
}

unsafe impl<T> Send for Inner<T>
where
    T: Copy + Send,
{
}

//@ has no_redundancy/struct.Outer.html
//@ has - '//*[@id="synthetic-implementations-list"]//*[@class="impl"]//h3[@class="code-header"]' \
// "impl<T> Send for Outer<T>where T: Copy + Send"
pub struct Outer<T> {
    inner_field: Inner<T>,
}