blob: cf173111ec1e27ebdab26114d4315721d1ccff01 (
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"]//code' "impl<T> Send for \
// Outer<T> where T: Copy + Send"
pub struct Outer<T> {
inner_field: Inner<T>,
}
|