// FIXME(fmease, #119216): Reenable this test! //@ ignore-test 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"]//h3[@class="code-header"]' \ // "impl Send for Outerwhere T: Send + Copy" pub struct Outer { inner_field: Inner, }