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