blob: f727c9a47f2687095f84cf8929affbc71a57a515 [file] [log] [blame]
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 has-srclink"]//h3[@class="code-header in-band"]' \
// "impl<T> Send for Outer<T> where T: Copy + Send"
pub struct Outer<T> {
inner_field: Inner<T>,
}